blob: 455ecef1f7a8dd162ea925ec01bc77cdb94f418d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
! 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
|