1 /* { dg-do compile } */ 2 /* { dg-options "-fopenmp -fdump-tree-ompexp" } */ 3 4 extern void bar(int); 5 foo(int n)6void foo (int n) 7 { 8 int i; 9 10 #pragma omp for schedule(static) ordered 11 for (i = 0; i < n; ++i) 12 bar(i); 13 } 14 15 /* { dg-final { scan-tree-dump-times "GOMP_loop_ordered_static_start" 1 "ompexp" } } */ 16 /* { dg-final { scan-tree-dump-times "GOMP_loop_ordered_static_next" 1 "ompexp" } } */ 17