2014-07-12 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / gcc / testsuite / gfortran.dg / promotion_2.f90
blob3acf249705c021d8a31e176b435a139ecb782f75
1 ! { dg-do compile }
2 ! { dg-options "-fdefault-real-8 -fexternal-blas -fdump-tree-original" }
4 ! PR fortran/54463
6 ! Contributed by Simon Reinhardt
8 program test
9 implicit none
10 real, dimension(3,3) :: A
11 A = matmul(A,A)
12 end program test
14 ! { dg-final { scan-tree-dump-times "sgemm_" 0 "original" } }
15 ! { dg-final { scan-tree-dump-times "dgemm_" 1 "original" } }
16 ! { dg-final { cleanup-tree-dump "original" } }