1 /* PR tree-optimization/78720 */
3 __attribute__((noinline
, noclone
)) long int
6 return x
< 0 ? 0x80000L
: 0L;
9 __attribute__((noinline
, noclone
)) long int
12 return x
< 0 ? 0x80L
: 0L;
15 __attribute__((noinline
, noclone
)) long int
18 return x
< 0 ? 0x20L
: 0L;
24 if (foo (-1) != 0x80000L
|| bar (-1) != 0x80L
|| baz (-1) != 0x20L
25 || foo (0) != 0L || bar (0) != 0L || baz (0) != 0L
26 || foo (31) != 0L || bar (31) != 0L || baz (31) != 0L)