changeset in /hg/icedtea: * patches/icedtea-float-double-trailin...

Keith Seitz keiths at redhat.com
Wed Oct 3 16:48:07 PDT 2007


changeset 3ff54046cde2 in /hg/icedtea
details: http://icedtea.classpath.org/hg/icedtea?cmd=changeset;node=3ff54046cde2
description:
	* patches/icedtea-float-double-trailing-zeros.patch:
	        New file.
	        * Makefile.am (ICEDTEA_PATCHES): Add above patch.
	        * Makefile.in: Regenerate.

diffstat:

4 files changed, 39 insertions(+)
ChangeLog                                         |    7 ++++
Makefile.am                                       |    1 
Makefile.in                                       |    1 
patches/icedtea-float-double-trailing-zeros.patch |   30 +++++++++++++++++++++

diffs (70 lines):

diff -r ec5c1b178b00 -r 3ff54046cde2 ChangeLog
--- a/ChangeLog	Wed Oct 03 15:44:35 2007 -0700
+++ b/ChangeLog	Wed Oct 03 16:48:03 2007 -0700
@@ -1,3 +1,10 @@ 2007-10-03  Keith Seitz  <keiths at redhat.
+2007-10-03  Keith Seitz  <keiths at redhat.com>
+
+	* patches/icedtea-float-double-trailing-zeros.patch:
+	New file.
+	* Makefile.am (ICEDTEA_PATCHES): Add above patch.
+	* Makefile.in: Regenerate.
+
 2007-10-03  Keith Seitz  <keiths at redhat.com>
 
 	* patches/icedtea-bytebuffer-compact.patch: New file.
diff -r ec5c1b178b00 -r 3ff54046cde2 Makefile.am
--- a/Makefile.am	Wed Oct 03 15:44:35 2007 -0700
+++ b/Makefile.am	Wed Oct 03 16:48:03 2007 -0700
@@ -138,6 +138,7 @@ ICEDTEA_PATCHES = \
 	patches/icedtea-ant.patch \
 	patches/icedtea-gcc-suffix.patch \
 	patches/icedtea-bytebuffer-compact.patch \
+	patches/icedtea-float-double-trailing-zeros.patch \
 	$(FAST_BUILD_PATCH) \
 	$(DISTRIBUTION_PATCHES)
 
diff -r ec5c1b178b00 -r 3ff54046cde2 Makefile.in
--- a/Makefile.in	Wed Oct 03 15:44:35 2007 -0700
+++ b/Makefile.in	Wed Oct 03 16:48:03 2007 -0700
@@ -254,6 +254,7 @@ ICEDTEA_PATCHES = \
 	patches/icedtea-ant.patch \
 	patches/icedtea-gcc-suffix.patch \
 	patches/icedtea-bytebuffer-compact.patch \
+	patches/icedtea-float-double-trailing-zeros.patch \
 	$(FAST_BUILD_PATCH) \
 	$(DISTRIBUTION_PATCHES)
 
diff -r ec5c1b178b00 -r 3ff54046cde2 patches/icedtea-float-double-trailing-zeros.patch
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/patches/icedtea-float-double-trailing-zeros.patch	Wed Oct 03 16:48:03 2007 -0700
@@ -0,0 +1,30 @@
+diff -r 48f64c7da34f j2se/src/share/classes/sun/misc/FloatingDecimal.java
+--- openjdk/j2se/src/share/classes/sun/misc/FloatingDecimal.java	Thu Sep 27 12:56:46 2007 -0700
++++ openjdk/j2se/src/share/classes/sun/misc/FloatingDecimal.java	Wed Oct 03 15:53:31 2007 -0700
+@@ -730,7 +730,7 @@ public class FloatingDecimal{
+ 		 * Thus we will need more than one digit if we're using
+ 		 * E-form
+ 		 */
+-		if ( decExp <= -3 || decExp >= 8 ){
++		if ( decExp < -3 || decExp >= 8 ){
+ 		    high = low = false;
+ 		}
+ 		while( ! low && ! high ){
+@@ -783,7 +783,7 @@ public class FloatingDecimal{
+ 		 * Thus we will need more than one digit if we're using
+ 		 * E-form
+ 		 */
+-		if ( decExp <= -3 || decExp >= 8 ){
++		if ( decExp < -3 || decExp >= 8 ){
+ 		    high = low = false;
+ 		}
+ 		while( ! low && ! high ){
+@@ -847,7 +847,7 @@ public class FloatingDecimal{
+ 	     * Thus we will need more than one digit if we're using
+ 	     * E-form
+ 	     */
+-	    if ( decExp <= -3 || decExp >= 8 ){
++	    if ( decExp < -3 || decExp >= 8 ){
+ 		high = low = false;
+ 	    }
+ 	    while( ! low && ! high ){



More information about the distro-pkg-dev mailing list