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
FDO insane profile
[official-gcc.git]
/
libjava
/
testsuite
/
libjava.lang
/
pr13107_2.java
blob
dba3b249e3142d2d2ee85ce4cfccc40a605e3109
1
public class
pr13107_2
2
{
3
public static int
foo
(
boolean
b
)
4
{
5
int
i
;
6
try
{
7
if
(
b
)
return
1
;
8
i
=
2
;
9
}
10
finally
{
11
if
(
b
)
i
=
3
;
12
}
13
return
i
;
14
}
15
16
public static void
main
(
String
[]
args
)
17
{
18
}
19
}