Skip to content

Commit a4f30b0

Browse files
Changed error checks in LIT test
1 parent b2701e5 commit a4f30b0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

flang/test/Semantics/ignore_tkr04.f90

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,10 @@ module ignore_tkr_4_m
55
subroutine s(a)
66
real, pointer :: a(:)
77
!dir$ ignore_tkr(p) a
8-
!CHECK-NOT: error
9-
!CHECK-NOT: warning
108
end subroutine
119
subroutine s1(a)
1210
real, allocatable :: a(:)
1311
!dir$ ignore_tkr(p) a
14-
!CHECK-NOT: error
15-
!CHECK-NOT: warning
1612
end subroutine
1713
end interface
1814
end module
@@ -21,6 +17,10 @@ program t
2117
real, allocatable :: x(:)
2218
real, pointer :: x1(:)
2319
call s(x)
20+
!CHECK-NOT: error
21+
!CHECK-NOT: warning
2422
call s1(x1)
23+
!CHECK-NOT: error
24+
!CHECK-NOT: warning
2525
end
2626

0 commit comments

Comments
 (0)