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