(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
gomp/
for-10.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-fopenmp -fdump-tree-ompexp" } */
       3  
       4  extern void bar(int);
       5  
       6  void foo (int n)
       7  {
       8    int i;
       9  
      10    #pragma omp for schedule(runtime) ordered
      11    for (i = 0; i < n; ++i)
      12      bar(i);
      13  }
      14  
      15  /* { dg-final { scan-tree-dump-times "GOMP_loop_ordered_runtime_start" 1 "ompexp" } } */
      16  /* { dg-final { scan-tree-dump-times "GOMP_loop_ordered_runtime_next" 1 "ompexp" } } */