1 /* PR tree-optimization/37662 */
2 
3 extern int baz (void);
4 
5 static int
foo(void)6 foo (void)
7 {
8   return 1;
9 }
10 
11 int
bar(void)12 bar (void)
13 {
14   return foo () >= 1 ^ (baz () || 0) || 0;
15 }
16