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/] [intrinsic_dummy.f90] - Rev 378
Go to most recent revision | Compare with Previous | Blame | View Log
! Program to test passing intrinsic functions as actual arguments for
! dummy procedures.
subroutine test (proc)
implicit none
real proc
real a, b, c
a = 1.0
b = sin (a)
c = proc (a)
if (abs (b - c) .gt. 0.001) call abort
end subroutine
program dummy
implicit none
external test
intrinsic sin
call test (sin)
end program
Go to most recent revision | Compare with Previous | Blame | View Log