Merged revisions 208012,208018-208019,208021,208023-208030,208033,208037,208040-20804...
[official-gcc.git] / main / gcc / testsuite / g++.dg / gomp / for-10.C
blobf21404249c765f68020ad1864b1edfba13b77bc4
1 /* { dg-do compile } */
2 /* { dg-options "-fopenmp -fdump-tree-ompexp" } */
4 extern void bar(int);
6 void foo (int n)
8   int i;
10   #pragma omp for schedule(runtime) ordered
11   for (i = 0; i < n; ++i)
12     bar(i);
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" } } */
17 /* { dg-final { cleanup-tree-dump "ompexp" } } */