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
/
zeroexp.java
blob
f14efbbc9a290e0b114743c40efdb08c692d93d4
1
public class
zeroexp
2
{
3
public static void
main
(
String
[]
argv
)
4
{
5
// gcj used to give an error about this literal.
6
float
f
=
0E-6
F
;
7
double
d
=
0E-9
;
8
System
.
out
.
println
(
""
+
f
+
" "
+
d
);
9
}
10
}