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 warning with -Wsign-compare -Wsystem-headers
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.fortran-torture
/
execute
/
hollerith.f90
blob
2b23f705c7a664a1febe0bd65a18e0807073c434
1
! PR 14038- 'H' in hollerith causes mangling of string
2
program
hollerith
3
IMPLICIT NONE
4
CHARACTER
*
4
LINE
5
100
FORMAT
(
4
H12H4
)
6
WRITE
(
LINE
,
100
)
7
IF
(
LINE
.
NE
.
'12H4'
)
STOP
1
8
end
9