Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / gomp / for-8.c
blobc3b53661c8797e1bfb7ee0d5f206345c7931df96
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(dynamic) ordered
11 for (i = 0; i < n; ++i)
12 bar(i);
15 /* { dg-final { scan-tree-dump-times "GOMP_loop_ordered_dynamic_start" 1 "ompexp" } } */
16 /* { dg-final { scan-tree-dump-times "GOMP_loop_ordered_dynamic_next" 1 "ompexp" } } */