I have a test program like this:
int main()
{
unsigned n = 32;
printf("ans << 32 = 0x%X\n", (~0x0U) << 32);
printf("ans >> 32 = 0x%X\n", (~0x0U) >> 32);
printf("ans << n(32) = 0x%X\n", (~0x0U) << n);
printf("ans >> n(32) = 0x%X\n", (~0x0U) >> n);
return 0;
}
It produces the following output:
ans << 32 = 0x0 ... (1)
ans >> 32 = 0x0 ... (2)
ans << n(32) = 0xFFFFFFFF ... (3)
ans >> n(32) = 0xFFFFFFFF ... (4)
I was expecting (1) and (3) to be the same, as well as (2) and (4) to be the same.
Using gcc version: gcc.real (Ubuntu 4.4.1-4ubuntu9) 4.4.1
What is happening?
Shifting by the size of the type is undefined behavior, according to the C standard, § 6.5.7.3:
Your compiler should warn you about this:
If you look at the assembler code gcc is generating, you'll see it is actually calculating the first two results at compilation time. Simplified: