aarch64: Add vector floating point extend pattern [PR113880, PR113869]
[official-gcc.git] / gcc / testsuite / gfortran.dg / array_constructor_14.f90
blobc318bb8587f8803c4df11a9eeb1aa075c94e9e27
1 ! { dg-do compile }
2 ! { dg-options "-O2 -fdump-tree-original" }
4 subroutine foo(x)
5 integer :: x(4)
6 x(:) = (/ 3, 1, 4, 1 /)
7 end subroutine
9 subroutine bar(x)
10 integer :: x(4)
11 x = (/ 3, 1, 4, 1 /)
12 end subroutine
14 ! { dg-final { scan-tree-dump-times "data" 0 "original" } }