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/] [boz_14.f90] - Rev 318
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do run }
! { dg-add-options ieee }
! PR fortran/36214
! For BOZ-initialization of floats, the precision used to be wrong sometimes.
implicit none
real(4) r
real(8) rd
complex(8) z
rd = &
real (b'00000000000000000000000000000000&
&01000000001010010101001111111101',8)
z = &
cmplx(b'00000000000000000000000000000000&
&01000000001010010101001111111101',0,8)
r = 0.
if (z /= rd) call abort
end
Go to most recent revision | Compare with Previous | Blame | View Log