Skip to content

[flang][OpenMP] Add %flang_fc1 RUN to delayed privatization tests #84296

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 7, 2024
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
! Test delayed privatization for the `private` clause.

! RUN: bbc -emit-fir -hlfir=false -fopenmp --openmp-enable-delayed-privatization -o - %s 2>&1 | FileCheck %s
! RUN: %flang_fc1 -emit-fir -flang-deprecated-no-hlfir -fopenmp -mmlir \
! RUN: --openmp-enable-delayed-privatization -o - %s 2>&1 | FileCheck %s
! RUN: bbc -emit-fir -hlfir=false -fopenmp --openmp-enable-delayed-privatization \
! RUN: -o - %s 2>&1 | FileCheck %s

subroutine delayed_privatization_firstprivate
implicit none
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
! Test delayed privatization for the `private` clause.

! RUN: bbc -emit-fir -hlfir=false -fopenmp --openmp-enable-delayed-privatization -o - %s 2>&1 | FileCheck %s
! RUN: %flang_fc1 -emit-fir -flang-deprecated-no-hlfir -fopenmp -mmlir \
! RUN: --openmp-enable-delayed-privatization -o - %s 2>&1 | FileCheck %s
! RUN: bbc -emit-fir -hlfir=false -fopenmp --openmp-enable-delayed-privatization \
! RUN: -o - %s 2>&1 | FileCheck %s

subroutine delayed_privatization_private
implicit none
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
! Test delayed privatization for the `firstprivate` clause.

! RUN: bbc -emit-hlfir -fopenmp --openmp-enable-delayed-privatization -o - %s 2>&1 | FileCheck %s
! RUN: %flang_fc1 -emit-hlfir -fopenmp -mmlir --openmp-enable-delayed-privatization \
! RUN: -o - %s 2>&1 | FileCheck %s
! RUN: bbc -emit-hlfir -fopenmp --openmp-enable-delayed-privatization -o - %s 2>&1 \
! RUN: | FileCheck %s

subroutine delayed_privatization_firstprivate
implicit none
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
! Test delayed privatization for both `private` and `firstprivate` clauses.

! RUN: bbc -emit-hlfir -fopenmp --openmp-enable-delayed-privatization -o - %s 2>&1 | FileCheck %s
! RUN: %flang_fc1 -emit-hlfir -fopenmp -mmlir --openmp-enable-delayed-privatization \
! RUN: -o - %s 2>&1 | FileCheck %s
! RUN: bbc -emit-hlfir -fopenmp --openmp-enable-delayed-privatization -o - %s 2>&1 \
! RUN: | FileCheck %s

subroutine delayed_privatization_private_firstprivate
implicit none
Expand Down
5 changes: 4 additions & 1 deletion flang/test/Lower/OpenMP/delayed-privatization-private.f90
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
! Test delayed privatization for the `private` clause.

! RUN: bbc -emit-hlfir -fopenmp --openmp-enable-delayed-privatization -o - %s 2>&1 | FileCheck %s
! RUN: %flang_fc1 -emit-hlfir -fopenmp -mmlir --openmp-enable-delayed-privatization \
! RUN: -o - %s 2>&1 | FileCheck %s
! RUN: bbc -emit-hlfir -fopenmp --openmp-enable-delayed-privatization -o - %s 2>&1 \
! RUN: | FileCheck %s

subroutine delayed_privatization_private
implicit none
Expand Down
5 changes: 4 additions & 1 deletion flang/test/Lower/OpenMP/delayed-privatization-reduction.f90
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
! that the block arguments are added in the proper order (reductions first and
! then delayed privatization.

! RUN: bbc -emit-hlfir -fopenmp --openmp-enable-delayed-privatization -o - %s 2>&1 | FileCheck %s
! RUN: %flang_fc1 -emit-hlfir -fopenmp -mmlir --openmp-enable-delayed-privatization \
! RUN: -o - %s 2>&1 | FileCheck %s
! RUN: bbc -emit-hlfir -fopenmp --openmp-enable-delayed-privatization -o - %s 2>&1 \
! RUN: | FileCheck %s

subroutine red_and_delayed_private
integer :: red
Expand Down