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! { dg-final { scan-tree-dump-times "number of SCoPs: 1" 1 "graphite" { xfail *-*-* } } }
11! { dg-final { scan-tree-dump-times "will be loop blocked" 1 "graphite" { xfail *-*-* } } }
12! { dg-final { cleanup-tree-dump "graphite" } }
13
14