summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/bounds_check_11.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/bounds_check_11.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/bounds_check_11.f9025
1 files changed, 25 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/bounds_check_11.f90 b/gcc/testsuite/gfortran.dg/bounds_check_11.f90
new file mode 100644
index 000000000..6e2cf3e78
--- /dev/null
+++ b/gcc/testsuite/gfortran.dg/bounds_check_11.f90
@@ -0,0 +1,25 @@
+! { dg-do run }
+! { dg-options "-fbounds-check" }
+! { dg-shouldfail "Array bound checking" }
+! PR fortran/33745
+!
+! Don't check upper bound of assumed-size array
+!
+
+program test
+ implicit none
+ integer, parameter :: maxss=7,maxc=8
+ integer :: jp(2,maxc)
+ call findphase(jp)
+contains
+ subroutine findphase(jp)
+ integer, intent(out) :: jp(2,*)
+ jp(2,2:4)=0
+ jp(2,0:4)=0 ! { dg-warning "out of bounds" }
+ jp(3,1:4)=0 ! { dg-warning "out of bounds" }
+ end subroutine
+end program test
+
+! { dg-output "At line 18 of file .*" }
+! { dg-output "Index '0' of dimension 2 of array 'jp' below lower bound of 1" }
+