]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/gomp/for-6.c
* builtin-types.def (BT_FN_VOID_BOOL, BT_FN_VOID_SIZE_SIZE_PTR,
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / gomp / for-6.c
CommitLineData
1e8e9920 1/* { dg-do compile } */
773c5ba7 2/* { dg-options "-fopenmp -fdump-tree-ompexp" } */
1e8e9920 3
4extern void bar(int);
5
6void foo (int n)
7{
8 int i;
9
10 #pragma omp for schedule(runtime)
11 for (i = 0; i < n; ++i)
12 bar(i);
13}
14
7e5a76c8 15/* { dg-final { scan-tree-dump-times "GOMP_loop_maybe_nonmonotonic_runtime_start" 1 "ompexp" } } */
16/* { dg-final { scan-tree-dump-times "GOMP_loop_maybe_nonmonotonic_runtime_next" 1 "ompexp" } } */