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.dg/] [isnan_2.f90] - Rev 308
Go to most recent revision | Compare with Previous | Blame | View Log
! Test for the ISNAN intrinsic on constants
!
! { dg-do run }
! { dg-options "-fno-range-check" }
! { dg-add-options ieee }
! { dg-skip-if "NaN not supported" { spu-*-* } { "*" } { "" } }
!
implicit none
character(len=1) :: s
write(s,'(L1)') isnan(0.)
if (s /= 'F') call abort
write(s,'(L1)') isnan(exp(huge(0.)))
if (s /= 'F') call abort
write(s,'(L1)') isnan(0./0.)
if (s /= 'T') call abort
end
Go to most recent revision | Compare with Previous | Blame | View Log