URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gfortran.dg/] [pr20480.f90] - Rev 823
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