+2003-09-23 Nathanael Nerode <neroden@gcc.gnu.org>
+
+ * java/lang/Float.java, java/lang/Double.java: Add GCJ LOCAL
+ markers.
+
2003-09-22 Anthony Green <green@redhat.com>
* configure.in (HAVE_USLEEP_DECL): Define for newlib build.
* @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
* @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
* @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>
* @return the bits of the <code>float</code>
* @see #intBitsToFloat(int)
*/
+ // GCJ LOCAL: We diverge from Classpath for efficiency.
public static native int floatToIntBits(float value);
+ // END GCJ LOCAL
/**
* Convert the float to the IEEE 754 floating-point "single format" bit
* @return the bits of the <code>float</code>
* @see #intBitsToFloat(int)
*/
+ // GCJ LOCAL: We diverge from Classpath for efficiency.
public static native int floatToRawIntBits(float value);
+ // END GCJ LOCAL
/**
* Convert the argument in IEEE 754 floating-point "single format" bit
* @see #floatToIntBits(float)
* @see #floatToRawIntBits(float)
*/
+ // GCJ LOCAL: We diverge from Classpath for efficiency.
public static native float intBitsToFloat(int bits);
+ // END GCJ LOCAL
/**
* Compare two Floats numerically by comparing their <code>float</code>