diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/gomp/workshare-reduction-1.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/gomp/workshare-reduction-1.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/gomp/workshare-reduction-1.c b/gcc/testsuite/gcc.dg/gomp/workshare-reduction-1.c new file mode 100644 index 0000000..1edd137 --- /dev/null +++ b/gcc/testsuite/gcc.dg/gomp/workshare-reduction-1.c @@ -0,0 +1,23 @@ +/* { dg-do compile } */ +/* { dg-options "-O2 -fopenmp -fdump-tree-optimized" } */ +/* { dg-final { scan-tree-dump-times "__builtin_GOMP_loop_start \[^\n\r]*, 0, 0, " 1 "optimized" } } */ +/* { dg-final { scan-tree-dump-times "__builtin_GOMP_loop_end " 1 "optimized" } } */ +/* { dg-final { scan-tree-dump-times "__builtin_GOMP_loop_maybe_nonmonotonic_runtime_next " 1 "optimized" } } */ +/* { dg-final { scan-tree-dump-times "__builtin_GOMP_workshare_task_reduction_unregister \\(0\\)" 1 "optimized" } } */ +/* { dg-final { scan-tree-dump-times "__builtin_GOMP_parallel " 1 "optimized" } } */ + +int j; +void bar (int *); + +void +foo (int a, int b, int c) +{ + int i; + #pragma omp parallel + #pragma omp for reduction (task, *: j) schedule (runtime) + for (i = a; i < b; i += c) + { + j++; + bar (&j); + } +} |