2 20020219-1.c from the execute part of the gcc torture suite.
11 // Some ports do not yet support long long
12 #if !defined(__SDCC_pic14) && !defined(__SDCC_pic16)
15 This testcase failed because 0x8000000000000000 >> 0
16 was incorrectly folded into 0xffffffff00000000. */
20 long long C
= 1ULL << 63, X
;
27 void testTortureExecute (void)
29 #if !defined(__SDCC_pic14) && !defined(__SDCC_pic16)
30 if (foo () != 1ULL << 63)