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
* config/rs6000/xcoff.h (ASM_OUTPUT_ALIGNED_COMMON): Use floor_log2.
[official-gcc.git]
/
libjava
/
testsuite
/
libjava.lang
/
pr25676.java
blob
e79a2c23d918e0d8ef7b258fe3d374977bc92b3c
1
public class
pr25676
2
{
3
public static double
g
(
double
a
,
double
b
)
4
{
5
return
Math
.
min
(
a
,
b
);
6
}
7
public static void
main
(
String a
[])
8
{
9
System
.
out
.
println
(
g
(
0.0
, -
0.0
));
10
System
.
out
.
println
(
g
(-
0.0
,
0.0
));
11
}
12
}