File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed
flang/test/Lower/OpenMP/Todo Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change 1+ ! RUN: %not_todo_cmd bbc -emit-fir -fopenmp -fopenmp-version=50 -o - %s 2>&1 | FileCheck %s
2+ ! RUN: %not_todo_cmd %flang_fc1 -emit-fir -fopenmp -fopenmp-version=50 -o - %s 2>&1 | FileCheck %s
3+
4+ ! CHECK: not yet implemented: Unhandled clause IN_REDUCTION in TASKLOOP construct
5+ subroutine omp_taskloop_inreduction ()
6+ integer x
7+ x = 0
8+ ! $omp taskloop in_reduction(+:x)
9+ do i = 1 , 100
10+ x = x + 1
11+ end do
12+ ! $omp end taskloop
13+ end subroutine omp_taskloop_inreduction
Original file line number Diff line number Diff line change 1+ ! RUN: %not_todo_cmd bbc -emit-fir -fopenmp -fopenmp-version=50 -o - %s 2>&1 | FileCheck %s
2+ ! RUN: %not_todo_cmd %flang_fc1 -emit-fir -fopenmp -fopenmp-version=50 -o - %s 2>&1 | FileCheck %s
3+
4+ ! CHECK: not yet implemented: Unhandled clause REDUCTION in TASKLOOP construct
5+ subroutine omp_taskloop_reduction ()
6+ integer x
7+ x = 0
8+ ! $omp taskloop reduction(+:x)
9+ do i = 1 , 100
10+ x = x + 1
11+ end do
12+ ! $omp end taskloop
13+ end subroutine omp_taskloop_reduction
You can’t perform that action at this time.
0 commit comments