Fix unused warnings.
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.c-torture / execute / 20071205-1.c
blobfa19ec067c29d5934eb1b7fed8fbdaaedc6700a0
1 /* PR middle-end/34337 */
3 extern void abort (void);
5 int
6 foo (int x)
8 return ((x << 8) & 65535) | 255;
11 int
12 main (void)
14 if (foo (0x32) != 0x32ff || foo (0x174) != 0x74ff)
15 abort ();
16 return 0;