URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [dependency_35.f90] - Rev 694
Compare with Previous | Blame | View Log
! { dg-do compile }! { dg-options "-Warray-temporaries -O" }module fooimplicit nonecontainspure function bar(i,j)integer, intent(in) :: i,jinteger, dimension(2,2) :: barbar = 33end function barend module fooprogram mainuse fooimplicit noneinteger a(2,2), b(2,2),c(2,2), d(2,2), e(2)read (*,*) b, c, da = matmul(b,c) + da = b + bar(3,4)a = bar(3,4)*5 + be = sum(b,1) + 3end program main! { dg-final { cleanup-modules "foo" } }
