Subject: RE: gcc: feature or bug? Date: Tue, 17 Nov 1998 13:22:50 -0800 Message-Id: <27669857.5.1912@mx1-11.onmedia.com> From: "Tom St Denis" To: Laszlo Molnar , DJGPP Workers List MIME-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit Reply-To: djgpp-workers AT delorie DOT com Well x*2/2 will optimize out to be X, and it's also mathmatically correct. If you want to manipulate bits, use logical operators like &, ^, |, << or >>. That's what they are for. tom....