summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDalibor Topic <robilad@yahoo.com>2008-02-08 18:34:54 +0000
committerDalibor Topic <robilad@yahoo.com>2008-02-08 18:34:54 +0000
commit9096e377cd45af8a5a7570d464be84b0d1f8bb96 (patch)
treea2b5f4c23dc31f26ea4a38d57241bf511f76308b /doc
parentb60dc2c28fb17676f7bc4425258fbc6f80510a30 (diff)
downloadclasspath-9096e377cd45af8a5a7570d464be84b0d1f8bb96.tar.gz
2008-02-08 Dalibor Topic <robilad@kaffe.org>
* vm/reference/java/lang/VMFloat.java (floatToIntBits): Removed unused method. * native/jni/java-lang/java_lang_VMFloat.c (Java_java_lang_VMFloat_floatToIntBits): Removed unused function. * include/java_lang_VMDouble.h: Regenerated. * doc/cp-vmintegration.texinfo (java.lang.VMFloat): Removed unused method floatToIntBits. (java.lang.VMDouble): Use similar text to text used for floatToRawIntBits for doubleToLongBits.
Diffstat (limited to 'doc')
-rw-r--r--doc/cp-vmintegration.texinfo10
1 files changed, 4 insertions, 6 deletions
diff --git a/doc/cp-vmintegration.texinfo b/doc/cp-vmintegration.texinfo
index 1a4418e8f..33695d23b 100644
--- a/doc/cp-vmintegration.texinfo
+++ b/doc/cp-vmintegration.texinfo
@@ -526,8 +526,8 @@ compiler, and is specific to the compiler implementation.
of doubles.
@itemize @bullet
-@item @code{doubleToRawLongBits(double)} -- Same as the above, but preserves
-NaNs.
+@item @code{doubleToRawLongBits(double)} -- Converts the double to the IEEE 754
+bit layout, preserving NaNs.
@item @code{longBitsToDouble(long)} -- This is the inverse of the last method,
preserving NaNs so that the output of one can be fed into the other without
data loss.
@@ -550,10 +550,8 @@ implementation optional.
@code{VMFloat} provides native support for the conversion of floats.
@itemize @bullet
-@item @code{floatToIntBits(float)} -- Converts the float to the IEEE 754
-bit layout, collapsing NaNs to @code{0x7fc00000}.
-@item @code{floatToRawIntBits(float)} -- Same as the above, but preserves
-NaNs.
+@item @code{floatToRawIntBits(float)} -- Converts the float to the IEEE 754
+bit layout, preserving NaNs.
@item @code{intBitsToFloat(int)} -- This is the inverse of the last method,
preserving NaNs so that the output of one can be fed into the other without
data loss.