S/390: Deprecate g5 and g6 CPU levels
[official-gcc.git] / gcc / testsuite / g++.dg / gomp / for-5.C
blobfca2697c9a4327a3b0d040cd6f320d3389f476fb
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(guided)
11   for (i = 0; i < n; ++i)
12     bar(i);
15 /* { dg-final { scan-tree-dump-times "GOMP_loop_guided_start" 1 "ompexp" } } */
16 /* { dg-final { scan-tree-dump-times "GOMP_loop_guided_next" 1 "ompexp" } } */