aboutsummaryrefslogtreecommitdiff
path: root/flang/test/Semantics/ignore_tkr04.f90
diff options
context:
space:
mode:
Diffstat (limited to 'flang/test/Semantics/ignore_tkr04.f90')
-rw-r--r--flang/test/Semantics/ignore_tkr04.f9026
1 files changed, 26 insertions, 0 deletions
diff --git a/flang/test/Semantics/ignore_tkr04.f90 b/flang/test/Semantics/ignore_tkr04.f90
new file mode 100644
index 0000000..8becc85
--- /dev/null
+++ b/flang/test/Semantics/ignore_tkr04.f90
@@ -0,0 +1,26 @@
+! RUN: %python %S/test_errors.py %s %flang_fc1
+! Tests for ignore_tkr(p)
+module ignore_tkr_4_m
+interface
+ subroutine s(a)
+ real, pointer :: a(:)
+!dir$ ignore_tkr(p) a
+ end subroutine
+ subroutine s1(a)
+ real, allocatable :: a(:)
+!dir$ ignore_tkr(p) a
+ end subroutine
+end interface
+end module
+program t
+ use ignore_tkr_4_m
+ real, allocatable :: x(:)
+ real, pointer :: x1(:)
+ call s(x)
+!CHECK-NOT: error
+!CHECK-NOT: warning
+ call s1(x1)
+!CHECK-NOT: error
+!CHECK-NOT: warning
+end
+