2 pr78720.c from the execute part of the gcc torture tests.
11 /* PR tree-optimization/78720 */
16 return x
< 0 ? 0x80000L
: 0L;
22 return x
< 0 ? 0x80L
: 0L;
28 return x
< 0 ? 0x20L
: 0L;
32 testTortureExecute (void)
34 if (foo (-1) != 0x80000L
|| bar (-1) != 0x80L
|| baz (-1) != 0x20L
35 || foo (0) != 0L || bar (0) != 0L || baz (0) != 0L
36 || foo (31) != 0L || bar (31) != 0L || baz (31) != 0L)