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.
6! c=0.d0
7
8do i = 1,n
9  do j = 1,n
10    do k = 1,n
11      c(j,i) = c(j,i) + a(k,i) * b(j,k)
12    enddo
13 enddo
14enddo
15
16end subroutine matrix_multiply
17
18! { dg-final { scan-tree-dump-times "number of SCoPs: 1" 1 "graphite" { xfail *-*-* } } }
19! { dg-final { scan-tree-dump-times "will be loop blocked" 1 "graphite" { xfail *-*-* } } }
20
21