URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.dg/] [forall_7.f90] - Rev 307
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do run }
integer :: a(10,10)
integer :: tot
a(:,:) = 0
forall (i = 1:10)
forall (j = 1:10)
a(i,j) = 1
end forall
forall (k = 1:10)
a(i,k) = a(i,k) + 1
end forall
end forall
tot = sum(a(:,:))
! print *, tot
if (tot .ne. 200) call abort ()
end
Go to most recent revision | Compare with Previous | Blame | View Log