2018-01-24 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / pr83396.c
blob7d8220e1154322c49bf12da3950a23e2562554b8
1 /* PR bootstrap/83396 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -g" } */
5 int bar (int);
6 int baz (int);
8 int
9 foo (int x)
11 return bar (x) || baz (x) != 0;