URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [erf.f90] - Rev 848
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do compile }
!
! Check whether ERF/ERFC take scalars and arrays as arguments (PR31760).
!
PROGRAM test_erf
REAL :: r = 0.0, ra(2) = (/ 0.0, 1.0 /)
r = erf(r)
r = erfc(r)
ra = erf(ra)
ra = erfc(ra)
END PROGRAM
Go to most recent revision | Compare with Previous | Blame | View Log