Path: utzoo!utgpu!jarvis.csri.toronto.edu!rutgers!cs.utexas.edu!uwm.edu!mrsvr.UUCP!kohli@gemed.ge.com From: kohli@gemed (Mr. Bad Judgment) Newsgroups: comp.lang.c Subject: Re: is this broken or what? Message-ID: <1936@mrsvr.UUCP> Date: 23 Jan 90 21:25:17 GMT Sender: news@mrsvr.UUCP Reply-To: kohli@gemed.ge.com (Mr. Bad Judgment) Organization: Geo-Duckside Exploration Unit # 1 Lines: 44 In article <1990Jan23.155910.2439@cubmol.bio.columbia.edu>, ping@cubmol.bio.columbia.edu (Shiping Zhang) writes: wsmith@mdbs.UUCP (Bill Smith) writes: <> unsigned u = 0; <> <> if (u-- < 4) <> printf("yes\n"); <> else <> printf("no\n"); <> <>The Data General Aviion 5000 (an 88000 machine) version of GCC converts this <>into: <> <> unsigned u = 0; <> <> if(--u < 3) .... <> <>for the assembly. <> <