OSDN Git Service

* g++.dg/init/new1.C, g++.dg/template/alignof1.C,
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 20021119-1.c
1 /* PR c/8588 */
2 /* Contributed by Volker Reichelt. */
3
4 /* Verify that GCC converts integer constants
5    in shift operations. */
6    
7 void foo()
8 {
9   unsigned int i, j;
10   j = (i >> 0xf0);
11 }