(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr94283.c
       1  /* PR debug/94283 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-O3 -fno-tree-dce -fcompare-debug" } */
       4  
       5  void
       6  foo (int *n)
       7  {
       8    for (int i = 0; i < 32; i++)
       9      {
      10        int x = 0;
      11        x++;
      12        if (i & 4)
      13  	x++;
      14        x++;
      15      }
      16  }