[AArch64] Merge stores of D-register values with different modes
[official-gcc.git] / gcc / testsuite / gfortran.dg / inline_matmul_15.f90
blobc822248c49a371213149717e9765d86970bf0248
1 ! { dg-do run }
2 ! { dg-shouldfail "dimension of array B incorrect in MATMUL intrinsic" }
3 ! { dg-options "-O -finline-matmul-limit=100 -fcheck=bounds" }
4 program main
5 real, dimension(:,:), allocatable :: a
6 real, dimension(:), allocatable :: b
7 allocate (a(2,2), b(3))
8 call random_number(a)
9 call random_number(b)
10 print *,matmul(a,b)
11 end program main
12 ! { dg-output "Fortran runtime error: Dimension of array B incorrect in MATMUL intrinsic.*" }