Double.java: More Classpath merging

* java/lang/Double.java: More Classpath merging
	(isInfinite): Don't use doubleToLongBits
	(isNaN (Object)): return v != v
	(initIDs): make native
	* java/lang/Float.java: Ditto
	(isInfinite): Don't use floatToIntBits
	(isNaN (Object)): return v != v
	* java/lang/natDouble.cc: add empty initIDs()

From-SVN: r46370
This commit is contained in:
Mark Wielaard 2001-10-20 06:26:45 +00:00 committed by Mark Wielaard
parent afb649d5c9
commit f0fdd66ba4
4 changed files with 42 additions and 19 deletions

View file

@ -186,3 +186,9 @@ java::lang::Double::parseDouble(jstring str)
}
throw new NumberFormatException;
}
void
java::lang::Double::initIDs()
{
// Not used in libgcj
}