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
* gcc.dg/tree-ssa/alias-30.c (dg-options): Dump only fre1 details.
[official-gcc.git]
/
libjava
/
testsuite
/
libjava.lang
/
Invoke_2.java
blob
a2d1407b31b107a1803e06131a94ece869ca7c45
1
public class
Invoke_2
2
{
3
static int
s
;
4
5
public static void
foo
(
int
a
,
int
b
)
6
{
7
System
.
out
.
println
(
a
+
" "
+
b
);
8
}
9
10
public static void
main
(
String
[]
args
) {
11
foo
(
bar
(),
s
);
12
}
13
14
public static int
bar
()
15
{
16
s
=
33
;
17
return
99
;
18
}
19
}
20