(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr103793.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-O3 -fno-guess-branch-probability" } */
       3  
       4  extern void bar (void);
       5  
       6  void
       7  foo (int x, int w)
       8  {
       9    for (int y; y < w; y++)
      10      if (y < x)
      11        bar ();
      12  }