Mercurial > hg > CbC > CbC_gcc
view gcc/testsuite/gfortran.dg/dependency_32.f90 @ 132:d34655255c78
update gcc-8.2
author | mir3636 |
---|---|
date | Thu, 25 Oct 2018 10:21:07 +0900 |
parents | 04ced10e8804 |
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