1 << BITS_PER_UNIT
Richard Earnshaw
rearnsha@arm.com
Mon Oct 26 02:24:00 GMT 1998
> Did you run:
>
> #include <stdio.h>
> #define BITS_PER_UNIT 8
> main() {
> printf("%x %x\n",
> (1 << BITS_PER_UNIT) - 1,
> (2 << (BITS_PER_UNIT - 1)));
> }
I wasn't suggesting ((1 << x) - 1) == (2 << (x - 1)), that is obviously
false, but (1 << x) == (2 << (x - 1)). Do some elementary math.
The point is that (1 << BITS_PER_UNIT) - 1 gets you a warning, but
(2 << (BITS_PER_UNIT - 1)) - 1 gives the same result but no warning, and
is well within the spec since (BITS_PER_UNIT - 1) is less than the word
size.
Richard.
More information about the Gcc
mailing list