/hg/release/icedtea6-1.8: Fix signedness of T_BYTE and T_CHAR re...
xranby at icedtea.classpath.org
xranby at icedtea.classpath.org
Mon Jul 19 07:01:31 PDT 2010
changeset 162af9c88f31 in /hg/release/icedtea6-1.8
details: http://icedtea.classpath.org/hg/release/icedtea6-1.8?cmd=changeset;node=162af9c88f31
author: Gary Benson <gbenson at redhat.com>
date: Thu May 13 15:53:35 2010 +0100
Fix signedness of T_BYTE and T_CHAR results
diffstat:
2 files changed, 9 insertions(+), 2 deletions(-)
ChangeLog | 7 +++++++
ports/hotspot/src/share/vm/shark/sharkNativeWrapper.cpp | 4 ++--
diffs (31 lines):
diff -r 0e8791bf2170 -r 162af9c88f31 ChangeLog
--- a/ChangeLog Fri Jul 16 15:19:55 2010 -0400
+++ b/ChangeLog Thu May 13 15:53:35 2010 +0100
@@ -1,3 +1,10 @@ 2010-07-16 Deepak Bhole <dbhole at redhat.
+2010-07-19 Gary Benson <gbenson at redhat.com>
+
+ PR icedtea/483
+ * ports/hotspot/src/share/vm/shark/sharkNativeWrapper.cpp
+ (SharkNativeWrapper::initialize): Fix signedness of T_BYTE
+ and T_CHAR results.
+
2010-07-16 Deepak Bhole <dbhole at redhat.com>
* patches/icedtea-policy-evaluation.patch: New patch. Fixes policy
diff -r 0e8791bf2170 -r 162af9c88f31 ports/hotspot/src/share/vm/shark/sharkNativeWrapper.cpp
--- a/ports/hotspot/src/share/vm/shark/sharkNativeWrapper.cpp Fri Jul 16 15:19:55 2010 -0400
+++ b/ports/hotspot/src/share/vm/shark/sharkNativeWrapper.cpp Thu May 13 15:53:35 2010 +0100
@@ -327,11 +327,11 @@ void SharkNativeWrapper::initialize(cons
needs_cast = true;
break;
- case T_BYTE:
+ case T_CHAR:
needs_cast = true;
break;
- case T_CHAR:
+ case T_BYTE:
case T_SHORT:
needs_cast = true;
is_signed = true;
More information about the distro-pkg-dev
mailing list