rt_gccstream/gcc/testsuite/gcc.c-torture/compile/pr37662.c

16 lines
159 B
C

/* PR tree-optimization/37662 */
extern int baz (void);
static int
foo (void)
{
return 1;
}
int
bar (void)
{
return foo () >= 1 ^ (baz () || 0) || 0;
}