(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr55110.c
       1  /* PR tree-optimization/55110 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-O1 -ftree-vectorize" } */
       4  
       5  int
       6  foo (int x)
       7  {
       8    int a, b;
       9    for (b = 0; b < 8; b++)
      10      for (a = 0; a < 2; a++)
      11        x /= 3;
      12    return x;
      13  }