modula2: Simplify REAL/LONGREAL/SHORTREAL node creation.
[official-gcc.git] / gcc / testsuite / gfortran.dg / aliasing_dummy_4.f90
blob5f497571360ba50f9ce2c4fc3097fc1685cd0265
1 ! { dg-do run }
2 ! This tests the fix for PR29315, in which array components of derived type arrays were
3 ! not correctly passed to procedures because of a fault in the function that detects
4 ! these references that do not have the span of a natural type.
6 ! Contributed by Stephen Jeffrey <stephen.jeffrey@nrm.qld.gov.au>
8 program test_f90
10 integer, parameter :: N = 2
12 type test_type
13 integer a(N, N)
14 end type
16 type (test_type) s(N, N)
18 forall (l = 1:N, m = 1:N) &
19 s(l, m)%a(:, :) = reshape ([((i*l + 10*j*m +100, i = 1, N), j = 1, N)], [N, N])
21 call test_sub(s%a(1, 1), 1000) ! Test the original problem.
23 if ( any (s(1, 1)%a(:, :) /= reshape ([1111, 112, 121, 122], [2, 2]))) STOP 1
24 if ( any (s(1, 2)%a(:, :) /= reshape ([1121, 122, 141, 142], [2, 2]))) STOP 2
25 if ( any (s(2, 1)%a(:, :) /= reshape ([1112, 114, 122, 124], [2, 2]))) STOP 3
26 if ( any (s(2, 2)%a(:, :) /= reshape ([1122, 124, 142, 144], [2, 2]))) STOP 4
28 call test_sub(s(1, 1)%a(:, :), 1000) ! Check "normal" references.
30 if ( any (s(1, 1)%a(:, :) /= reshape ([2111,1112,1121,1122], [2, 2]))) STOP 5
31 if ( any (s(1, 2)%a(:, :) /= reshape ([1121, 122, 141, 142], [2, 2]))) STOP 6
32 if ( any (s(2, 1)%a(:, :) /= reshape ([1112, 114, 122, 124], [2, 2]))) STOP 7
33 if ( any (s(2, 2)%a(:, :) /= reshape ([1122, 124, 142, 144], [2, 2]))) STOP 8
34 contains
35 subroutine test_sub(array, offset)
36 integer array(:, :), offset
38 forall (i = 1:N, j = 1:N) &
39 array(i, j) = array(i, j) + offset
40 end subroutine
41 end program