* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / shft.c
blob7d318c863c54b4e5e0e75e27cc57bd902bebc892
1 foo (a)
2 int a;
4 int b = 8;
6 if ((a << b) >= 0)
7 return 1;
8 return a;
11 main ()
13 if (foo (0x00ffffff) == 1)
14 puts ("y");