According to the answer to this questions:
The result of E1 << E2 is E1 left-shifted E2 bit positions; vacated bits are filled with zeros. If E1 has an unsigned type, the value of the result is E1 × 2E2, reduced modulo one more than the maximum value representable in the result type. If E1 has a signed type and nonnegative value, and E1 × 2E2 is representable in the result type, then that is the resulting value; otherwise, the behavior is undefined.
Which seems to imply that 1 << 31
is undefined.
However GCC doesn't issue a warning if I use 1 << 31
.
It does issue one for 1 << 32
.
link
So which is it? Am I misunderstanding the standard? Does GCC have its own interpretation?