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.fortran-torture/] [execute/] [entry_10.f90] - Rev 307
Go to most recent revision | Compare with Previous | Blame | View Log
function foo ()
foo = 4
foo = foo / 2
return
entry bar ()
bar = 9
bar = bar / 3
end
program entrytest
if (foo () .ne. 2) call abort ()
if (bar () .ne. 3) call abort ()
end
Go to most recent revision | Compare with Previous | Blame | View Log