(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr83396.c
       1  /* PR bootstrap/83396 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-O2 -g" } */
       4  
       5  int bar (int);
       6  int baz (int);
       7  
       8  int
       9  foo (int x)
      10  {
      11    return bar (x) || baz (x) != 0;
      12  }