(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr48742.c
       1  /* PR c/48742 */
       2  
       3  void baz (int);
       4  
       5  int
       6  foo (void)
       7  {
       8    return 1 / 0 > 0;
       9  }
      10  
      11  void
      12  bar (void)
      13  {
      14    baz (1 <= 2 % (3 >> 1 > 5 / 6 == 3));
      15  }