Mercurial > hg > CbC > CbC_gcc
annotate gcc/testsuite/gfortran.dg/array_simplify_1.f90 @ 111:04ced10e8804
gcc 7
author | kono |
---|---|
date | Fri, 27 Oct 2017 22:46:09 +0900 |
parents | |
children |
rev | line source |
---|---|
111 | 1 ! { dg-do compile } |
2 ! Tests the fix for PR24168, in which line would return | |
3 ! Error: Incompatible ranks 2 and 1 in assignment at (1) | |
4 ! This came about because the simplification of the binary | |
5 ! operation, in the first actual argument of spread, was not | |
6 ! returning the rank of the result. Thus the error could | |
7 ! be generated with any operator and other intrinsics than | |
8 ! cshift. | |
9 ! | |
10 ! Contributed by Steve Kargl <kargl@gcc.gnu.org> | |
11 ! | |
12 integer, parameter :: nx=2, ny=2 | |
13 real, dimension(nx, ny) :: f | |
14 f = spread(2 * cshift((/ 1, 2 /), nx/2), 2, ny) | |
15 end | |
16 |