Skip to content

Commit 89e0557

Browse files
committed
[flang][OpenMP] Fix comments in test file, NFC
Address review comments for PR91214.
1 parent 3809e20 commit 89e0557

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

flang/test/Lower/OpenMP/copyin-order.f90

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
!RUN: bbc -fopenmp -emit-hlfir -o - %s | FileCheck %s
22

3+
!https://github.com/llvm/llvm-project/issues/91205
4+
35
!CHECK: omp.parallel if(%{{[0-9]+}} : i1) {
46
!CHECK: %[[THP1:[0-9]+]] = omp.threadprivate %{{[0-9]+}}#1
57
!CHECK: %[[DCL1:[0-9]+]]:2 = hlfir.declare %[[THP1]] {uniq_name = "_QFcopyin_scalar_arrayEx1"}
@@ -14,14 +16,12 @@
1416
!CHECK: omp.terminator
1517
!CHECK: }
1618

17-
!https://github.com/llvm/llvm-project/issues/91205
18-
1919
subroutine copyin_scalar_array()
2020
integer(kind=4), save :: x1
2121
integer(kind=8), save :: x2(10)
2222
!$omp threadprivate(x1, x2)
2323

24-
! Have x1 appear before x2 in the AST node for the `parallel construct,
24+
! Have x1 appear before x2 in the AST node for the `parallel` construct,
2525
! but at the same time have them in a different order in `copyin`.
2626
!$omp parallel if (x1 .eq. x2(1)) copyin(x2, x1)
2727
call sub1(x1, x2)

0 commit comments

Comments
 (0)