]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr83396.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr83396.c
CommitLineData
6dfb83e8
JJ
1/* PR bootstrap/83396 */
2/* { dg-do compile } */
3/* { dg-options "-O2 -g" } */
4
5int bar (int);
6int baz (int);
7
8int
9foo (int x)
10{
11 return bar (x) || baz (x) != 0;
12}