URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [intrinsic_std_2.f90] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do link }
! { dg-options "-std=f95 -Wintrinsics-std -fall-intrinsics" }
! PR fortran/33141
! Check that -fall-intrinsics makes all intrinsics available.
PROGRAM main
IMPLICIT NONE
! abort is a GNU extension
CALL abort () ! { dg-bogus "extension" }
! ASINH is an intrinsic of F2008
WRITE (*,*) ASINH (1.) ! { dg-bogus "Fortran 2008" }
END PROGRAM main
Go to most recent revision | Compare with Previous | Blame | View Log