mirror of git://gcc.gnu.org/git/gcc.git
17 lines
405 B
C
17 lines
405 B
C
/* { dg-do compile } */
|
|
/* { dg-options "-fopenmp -fdump-tree-ompexp" } */
|
|
|
|
extern void bar(int);
|
|
|
|
void foo (int n)
|
|
{
|
|
int i;
|
|
|
|
#pragma omp for schedule(nonmonotonic:runtime)
|
|
for (i = 0; i < n; ++i)
|
|
bar(i);
|
|
}
|
|
|
|
/* { dg-final { scan-tree-dump-times "GOMP_loop_nonmonotonic_runtime_start" 1 "ompexp" } } */
|
|
/* { dg-final { scan-tree-dump-times "GOMP_loop_nonmonotonic_runtime_next" 1 "ompexp" } } */
|