blob: 59ad7b47a166b031203d61ec29f2c730f8d42e82 [file] [log] [blame]
/* PR tree-optimization/58364 */
int a = 1, b, c;
int
foo (int x)
{
return x < 0 ? 1 : x;
}
int
main ()
{
if (foo (a > c == (b = 0)))
__builtin_abort ();
return 0;
}