File tree Expand file tree Collapse file tree 3 files changed +32
-0
lines changed
flang/test/Lower/OpenMP/Todo Expand file tree Collapse file tree 3 files changed +32
-0
lines changed Original file line number Diff line number Diff line change 1+ ! RUN: %not_todo_cmd bbc -emit-fir -fopenmp -o - %s 2>&1 | FileCheck %s
2+ ! RUN: %not_todo_cmd %flang_fc1 -emit-fir -fopenmp -o - %s 2>&1 | FileCheck %s
3+
4+ ! CHECK: Map type modifiers (other than 'ALWAYS') are not implemented yet
5+ subroutine f00 ()
6+ integer :: x
7+ ! $omp target map(close: x)
8+ x = x + 1
9+ ! $omp end target
10+ end
Original file line number Diff line number Diff line change 1+ ! RUN: %not_todo_cmd bbc -emit-fir -fopenmp -o - %s 2>&1 | FileCheck %s
2+ ! RUN: %not_todo_cmd %flang_fc1 -emit-fir -fopenmp -o - %s 2>&1 | FileCheck %s
3+
4+ ! CHECK: Map type modifiers (other than 'ALWAYS') are not implemented yet
5+ subroutine f01 ()
6+ integer :: x
7+ ! $omp target map(ompx_hold: x)
8+ x = x + 1
9+ ! $omp end target
10+ end
11+
Original file line number Diff line number Diff line change 1+ ! RUN: %not_todo_cmd bbc -emit-fir -fopenmp -o - %s 2>&1 | FileCheck %s
2+ ! RUN: %not_todo_cmd %flang_fc1 -emit-fir -fopenmp -o - %s 2>&1 | FileCheck %s
3+
4+ ! CHECK: Map type modifiers (other than 'ALWAYS') are not implemented yet
5+ subroutine f02 ()
6+ integer :: x
7+ ! $omp target map(present: x)
8+ x = x + 1
9+ ! $omp end target
10+ end
11+
You can’t perform that action at this time.
0 commit comments