URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gfortran.dg/] [f2c_3.f90] - Rev 149
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do run }
! { dg-options "-ff2c" }
! Verifies that internal functions are not broken by f2c calling conventions
program test
real, target :: f
real, pointer :: q
real :: g
f = 1.0
q=>f
g = foo(q)
if (g .ne. 1.0) call abort
contains
function foo (p)
real, pointer :: foo
real, pointer :: p
foo => p
end function
end program
Go to most recent revision | Compare with Previous | Blame | View Log