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
mips.c (mips16_copy_fpr_return_value): New function, split out from...
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
pr29067.f
blob
5167114800262d8f3a7fc7000e232c7785402f35
1
! {
dg
-
do
compile
}
2
!
PR fortran
/
29067
3
implicit
none
4
integer
::
n
,
i
5
character
(
len
=
16
),
parameter
::
s
=
""
,
s2
=
"1234567890123456"
6
7
i
=
0
;
n
=
9
8
print
*,
s
(
9
:
16
)
9
print
*,
s2
(
9
:
16
)
10
if
(
s
(
9
:
16
) ==
"90123456"
)
then
11
endif
12
if
(
i
>
0
)
then
13
write
(
i
,*)
n
14
call
foo
(
0
)
15
endif
16
do
i
=
1
,
n
17
end do
18
end