repo.or.cz
/
zpugcc
/
jano.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fixes for host gcc 4.6.1
[zpugcc/jano.git]
/
toolchain
/
gcc
/
libjava
/
testsuite
/
libjava.compile
/
Twice.java
blob
d80760f4dd5cf9b9d3c1e97f1451abc3e73310da
1
// Simple compiler test.
2
3
public class
Twice
4
{
5
Twice
(
boolean
q
)
6
{
7
if
(
q
)
8
for
(
int
p
=
0
;
p
<
10
;
p
++);
9
else
10
for
(
int
p
=
0
;
p
<
10
;
p
++);
11
}
12
}
13
14