2011-02-15 Tobias Burnus <burnus@net-b.de>
[official-gcc.git] / gcc / testsuite / gfortran.dg / vector_subscript_4.f90
blob5c341dab4a5a24d3a4aa3d2e3a2d4be8c5ec05a6
1 ! { dg-do compile }
2 ! { dg-options "-fdump-tree-original" }
4 ! Test the fix for PR37903, in which the temporary for the vector index
5 ! got the wrong size.
7 ! Contributed by Mikael Morin <mikael.morin@tele2.fr>
9 integer :: i(-1:1) = 1, j(3) = 1, k(3)
10 k = j((/1,1,1/)+i)
11 end
12 ! { dg-final { scan-tree-dump-times "A\.2\\\[3\\\]" 1 "original" } }
13 ! { dg-final { cleanup-tree-dump "original" } }