PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr58364.c
blob59ad7b47a166b031203d61ec29f2c730f8d42e82
1 /* PR tree-optimization/58364 */
3 int a = 1, b, c;
5 int
6 foo (int x)
8 return x < 0 ? 1 : x;
11 int
12 main ()
14 if (foo (a > c == (b = 0)))
15 __builtin_abort ();
16 return 0;