(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
gomp/
complex-1.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-fopenmp -O1" } */
       3  /* PR middle-end/30143 */
       4  
       5  
       6  int f (int n)
       7  {
       8    int i;
       9    _Complex float t;
      10  #pragma omp parallel
      11      for (i = 1; i < n - 1; ++i)
      12        t+=1;
      13  }