URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [gfortran.dg/] [pr17143.f90] - Rev 193
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do run }
! pr17143
! does not print 2*63 correctly
character*25 l
integer(kind=8) i
data i /1/
do j = 1,63
i = i * 2
end do
write(l,*)i
if (l.ne.' -9223372036854775808') then
! ^
! the space is required before a number
call abort
endif
end
Go to most recent revision | Compare with Previous | Blame | View Log