PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / inline_matmul_5.f90
blob3f5a9d391abb98171276299b4fd5a7578861f2f2
1 ! { dg-do run }
2 ! { dg-options "-ffrontend-optimize" }
3 program main
5 real, dimension(2,2) :: a,b,c
7 data a /2., 4., 8., 16. /
8 data b /3., 9., 27., 81./
10 c = matmul(a,b)
11 a = matmul(a,b)
12 if (any(a /= c)) STOP 1
13 end program main