Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions flang/test/Lower/OpenMP/Todo/scope-allocate.f90
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
! RUN: %not_todo_cmd %flang_fc1 -emit-fir -fopenmp -o - %s -fopenmp-version=52 2>&1 | FileCheck %s

! CHECK: not yet implemented: Scope construct
program omp_scope
integer i
i = 10

!$omp scope allocate(x) private(x)
print *, "omp scope", i
!$omp end scope

end program omp_scope
12 changes: 12 additions & 0 deletions flang/test/Lower/OpenMP/Todo/scope-firstprivate.f90
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
! RUN: %not_todo_cmd %flang_fc1 -emit-fir -fopenmp -o - %s -fopenmp-version=52 2>&1 | FileCheck %s

! CHECK: not yet implemented: Scope construct
program omp_scope
integer i
i = 10

!$omp scope firstprivate(x)
print *, "omp scope", i
!$omp end scope

end program omp_scope
Loading