1subroutine matrix_multiply(a,b,c,n)
2
3real(8), dimension(n,n) :: a,b,c
4
5! The following code is disabled for the moment.
6c=0.d0
7
8end subroutine matrix_multiply
9
10! Disabled for now as it requires delinearization.
11! { dg-final { scan-tree-dump-times "number of SCoPs: 1" 1 "graphite" { xfail *-*-* } } }
12