summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/vector_subscript_9.f90
blob: d70a773287d43a33be1e496ebc20a3e386ce7147 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
! { dg-do run }
!
! PR fortran/102043
! The middle-end used to conclude from array indexing that the index
! should be non-negative and thus that array accesses to reversed arrays
! (i.e. with negative strides) only access the last element of the array,
! as the access involves a pointer to array that is initialized to point
! to the last element in the case of a reversed array.

program main
   integer, dimension (2) :: idx, a, b
   a = (/ 3, 4 /)
   idx = (/ 1, 2 /)
   call check_values(a(idx(2:1:-1)), (/ 4, 3 /))
contains
   subroutine check_values(values, expected)
      integer, dimension(:) :: values, expected
      if (size(values) /= size(expected)) stop 1
      if (any(values /= expected)) stop 2
   end subroutine check_values
end program main