PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / simplify_cshift_2.f90
blob04a61557afedf018bf25d32d267f32e8408dd5ed
1 ! { dg-do compile }
2 subroutine foo(u, n, fl)
3 implicit none
4 integer n
5 real u(5, n), fl(5,n), wl(5,n)
6 real c
7 c = 1
8 wl = u
9 fl = cshift(c * wl, 1, 2)
10 end subroutine foo