blob: 1d5a0acab07151be10e4fdaaa3b9f0ba0d3e56ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
! { dg-do run }
! { dg-require-effective-target fortran_large_int }
! Test that the internal pack and unpack routines work OK
! for our large integer type.
program main
integer,parameter :: k = selected_int_kind (range (0_8) + 1)
integer(kind=k), dimension(3) :: ik
ik = (/ -1, 1, -3 /)
call sub_ik(ik(1:3:2))
if (any(ik /= (/ 3, 1, 2 /))) STOP 1
end program main
subroutine sub_ik(i)
integer,parameter :: k = selected_int_kind (range (0_8) + 1)
integer(kind=k), dimension(2) :: i
if (i(1) /= -1) STOP 2
if (i(2) /= -3) STOP 3
i(1) = 3
i(2) = 2
end subroutine sub_ik
|