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/] [pr20480.f90] - Rev 313
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do run }
! PR libfortran/20480
! fxcoudert@gcc.gnu.org
character(len=80) c
write (c,'(ES12.3)') 0.0
if (trim(adjustl(c)) .ne. '0.000E+00') call abort ()
write (c,'(EN12.3)') 0.0
if (trim(adjustl(c)) .ne. '0.000E+00') call abort ()
end
Go to most recent revision | Compare with Previous | Blame | View Log