AArch64: correct constraint on Upl early clobber alternatives
[official-gcc.git] / gcc / testsuite / gfortran.dg / matmul_17.f90
blobdc4c4184b35f1cda14acfef7d02e0320190459a4
1 ! { dg-do run }
2 ! PR Fortran/83900
3 ! Contributed by Gerhard Steinmetz <gscfq t t-online dot de>
4 program p
5 integer, parameter :: a(3,2) = 1
6 real, parameter :: b(2,3) = 2
7 real, parameter :: c(3,3) = matmul(a, b)
8 if (any(c /= 4.)) STOP 1
9 end