(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
vect/
pr22506.c
       1  /* { dg-do compile } */
       2  /* { dg-require-effective-target vect_int } */
       3  
       4  float x[3];
       5  
       6  void foo()
       7  {
       8      int i;
       9  
      10      for (i=0; i<3; ++i) x[i]=0;
      11      for (i=0; i<2; ++i) ;
      12  }
      13