* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gfortran.dg / promotion_2.f90
blob7e3c6c920103d220cef9711b548c756e76b753ae
1 ! { dg-do compile }
2 ! { dg-options "-fdefault-real-8 -fexternal-blas -fdump-tree-original -finline-matmul-limit=0" }
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" } }