Mercurial > hg > CbC > CbC_gcc
view gcc/testsuite/gfortran.dg/dependency_32.f90 @ 111:04ced10e8804
gcc 7
author | kono |
---|---|
date | Fri, 27 Oct 2017 22:46:09 +0900 |
parents | |
children |
line wrap: on
line source
! { dg-do compile } ! { dg-options "-Warray-temporaries" } ! PR 44235 ! No temporary should be created for this, as the upper bounds ! are effectively identical. program main real a(10) a = 0. a(1:10:4) = a(1:9:4) end program main