diff options
author | neroden <neroden@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-23 21:42:40 +0000 |
---|---|---|
committer | neroden <neroden@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-23 21:42:40 +0000 |
commit | 037c3010c8b0f441e6d5d1a8f68f20f347ce13a8 (patch) | |
tree | b2c54e6f94580cd097d2d1b71bd977c2f7b5d7bd /libjava/java/lang/Double.java | |
parent | f3c75914ac6ae73d92891a0b2791c9fd93a3a010 (diff) | |
download | ppe42-gcc-037c3010c8b0f441e6d5d1a8f68f20f347ce13a8.tar.gz ppe42-gcc-037c3010c8b0f441e6d5d1a8f68f20f347ce13a8.zip |
* java/lang/Float.java, java/lang/Double.java: Add GCJ LOCAL
markers.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@71699 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/lang/Double.java')
-rw-r--r-- | libjava/java/lang/Double.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libjava/java/lang/Double.java b/libjava/java/lang/Double.java index 199f64ee5b8..95ee4ecb775 100644 --- a/libjava/java/lang/Double.java +++ b/libjava/java/lang/Double.java @@ -428,7 +428,9 @@ public final class Double extends Number implements Comparable * @return the bits of the <code>double</code> * @see #longBitsToDouble(long) */ + // GCJ LOCAL: We diverge from Classpath for efficiency. public static native long doubleToLongBits(double value); + // END GCJ LOCAL /** * Convert the double to the IEEE 754 floating-point "double format" bit @@ -444,7 +446,9 @@ public final class Double extends Number implements Comparable * @return the bits of the <code>double</code> * @see #longBitsToDouble(long) */ + // GCJ LOCAL: We diverge from Classpath for efficiency. public static native long doubleToRawLongBits(double value); + // END GCJ LOCAL /** * Convert the argument in IEEE 754 floating-point "double format" bit @@ -459,7 +463,9 @@ public final class Double extends Number implements Comparable * @see #doubleToLongBits(double) * @see #doubleToRawLongBits(double) */ + // GCJ LOCAL: We diverge from Classpath for efficiency. public static native double longBitsToDouble(long bits); + // END GCJ LOCAL /** * Compare two Doubles numerically by comparing their <code>double</code> |