changeset in /hg/icedtea6: 2008-08-08 Gary Benson <gbenson at red...

Gary Benson gbenson at redhat.com
Fri Aug 8 09:13:50 PDT 2008


changeset d7f54e3a7a80 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=d7f54e3a7a80
description:
	2008-08-08  Gary Benson  <gbenson at redhat.com>

		* patches/icedtea-signed-types.patch: Signedness fix.

diffstat:

2 files changed, 16 insertions(+)
ChangeLog                          |    4 ++++
patches/icedtea-signed-types.patch |   12 ++++++++++++

diffs (30 lines):

diff -r fa9a766ac398 -r d7f54e3a7a80 ChangeLog
--- a/ChangeLog	Fri Aug 08 12:09:27 2008 -0400
+++ b/ChangeLog	Fri Aug 08 12:11:15 2008 -0400
@@ -1,3 +1,7 @@ 2008-08-08  Gary Benson  <gbenson at redhat
+2008-08-08  Gary Benson  <gbenson at redhat.com>
+
+	* patches/icedtea-signed-types.patch: Signedness fix.
+
 2008-08-08  Gary Benson  <gbenson at redhat.com>
 
 	* configure.ac (LLVM_CFLAGS): Fix for PRODUCT builds.
diff -r fa9a766ac398 -r d7f54e3a7a80 patches/icedtea-signed-types.patch
--- a/patches/icedtea-signed-types.patch	Fri Aug 08 12:09:27 2008 -0400
+++ b/patches/icedtea-signed-types.patch	Fri Aug 08 12:11:15 2008 -0400
@@ -22,3 +22,15 @@ diff -r 9523b5ae0184 openjdk/hotspot/src
  #ifdef _WINDOWS
      struct hostent* host = hpi::get_host_by_name((char*)ip);
  #else
+diff -r ca98ea212429 openjdk/hotspot/src/share/vm/ci/ciTypeFlow.cpp
+--- openjdk/hotspot/src/share/vm/ci/ciTypeFlow.cpp	Fri Aug 08 16:06:52 2008 +0100
++++ openjdk/hotspot/src/share/vm/ci/ciTypeFlow.cpp	Fri Aug 08 16:15:45 2008 +0100
+@@ -388,7 +388,7 @@ const ciTypeFlow::StateVector* ciTypeFlo
+   // Set the rest of the locals to bottom.
+   Cell cell = state->next_cell(state->tos());
+   state->set_stack_size(0);
+-  int limit = state->limit_cell();
++  Cell limit = state->limit_cell();
+   for (; cell < limit; cell = state->next_cell(cell)) {
+     state->set_type_at(cell, state->bottom_type());
+   }



More information about the distro-pkg-dev mailing list