blob: d0251e8455b5d2455e797d2364605f8f64507b89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
! { dg-do compile }
! { dg-additional-options "-fcheck=bounds -fdump-tree-original" }
!
! PR fortran/113471 - wrong array bounds check
program pr113471
implicit none
type t
integer, dimension(2) :: c1 = 0
end type t
type(t) :: cc(7), bb(7)
integer :: kk = 1
! no bounds check (can be determined at compile time):
call foo (cc(7)% c1)
! bounds check involving kk, but no "outside of expected range"
call foo (bb(kk)% c1)
contains
subroutine foo (c)
integer, intent(in) :: c(:)
end
end
! { dg-final { scan-tree-dump-times "below lower bound" 2 "original" } }
! { dg-final { scan-tree-dump-times "above upper bound" 2 "original" } }
! { dg-final { scan-tree-dump-not "outside of expected range" "original" } }
|