aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr83396.c
blob: 7d8220e1154322c49bf12da3950a23e2562554b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* PR bootstrap/83396 */
/* { dg-do compile } */
/* { dg-options "-O2 -g" } */

int bar (int);
int baz (int);

int
foo (int x)
{
  return bar (x) || baz (x) != 0;
}