repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix warnings occured during profiledboostrap on
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
pr17143.f90
blob
4423eab7354e0e5b02972a3aaa28c0dea80e2f17
1
! { dg-do run }
2
! { dg-options "-std=legacy" }
3
!
4
! pr17143
5
! does not print 2*63 correctly
6
character
*
25
l
7
integer
(
kind
=
8
)
i
8
data
i
/
1
/
9
do
j
=
1
,
63
10
i
=
i
*
2
11
end do
12
write
(
l
,*)
i
13
if
(
l
.
ne
.
' -9223372036854775808'
)
then
14
! ^
15
! the space is required before a number
16
call
abort
17
endif
18
end
19