aarch64: Add vector floating point extend pattern [PR113880, PR113869]
[official-gcc.git] / gcc / testsuite / gfortran.dg / inline_matmul_8.f90
blob272f65f55ea02583d0db8fb54d05bbe2ac9c644a
1 ! { dg-do run }
2 ! { dg-options "-ffrontend-optimize -fdump-tree-original" }
3 ! PR 66041 - this used to ICE with an incomplete fix for the PR.
4 program main
5 implicit none
6 real, dimension(1,-2:0) :: a1
7 real, dimension(3,2) :: b1
8 real, dimension(2) :: c1
10 data a1 /17., -23., 29./
11 data b1 / 2., -3., 5., -7., 11., -13./
13 c1 = matmul(a1(1,:), b1)
14 if (any (c1-[248., -749.] /= 0.)) STOP 1
15 end program main
17 ! { dg-final { scan-tree-dump-times "_gfortran_matmul" 0 "original" } }