view gcc/testsuite/gfortran.dg/bounds_check_11.f90 @ 144:8f4e72ab4e11

fix segmentation fault caused by nothing next cur_op to end
author Takahiro SHIMIZU <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Sun, 23 Dec 2018 21:23:56 +0900
parents 04ced10e8804
children
line wrap: on
line source

! { 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" }