Do not create the temporary array for reductions into VAR_DECL, PARM_DECL, and RESULT...
[official-gcc/graphite-test-results.git] / gcc / testsuite / gfortran.dg / loop_nest_1.f90
blob8968d88c4705705543e4904f2d0fbe1f2a617bd6
1 ! PR tree-optimization/29290
2 ! { dg-do compile }
3 ! { dg-options "-O3 -ftree-loop-linear" }
5 subroutine pr29290 (a, b, c, d)
6 integer c, d
7 real*8 a(c,c), b(c,c)
8 a(1:d,1:d) = b(1:d,1:d)
9 end