OSDN Git Service

* gfortran.dg/underflow.f90: Use tiny(x)/huge(x).
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.dg / dfloat_1.f90
1 ! { dg-do run }
2 ! Progam to test the dfloat intrinsic.
3 program dfloat_1
4    implicit none
5    integer(2) i2
6    integer(4) i4
7    integer(8) i8
8    i2 = -4_2
9    i4 = 4_4
10    i8 = 10_8
11    if (dfloat(i2) /= -4.d0) call abort()
12    if (dfloat(i4) /= 4.d0) call abort()
13    if (dfloat(i8) /= 10.d0) call abort()
14    if (dfloat(i4*i2) /= -16.d0) call abort()
15 end program dfloat_1