changeset in /hg/icedtea6: 2008-10-29 Gary Benson <gbenson at red...
Gary Benson
gbenson at redhat.com
Wed Oct 29 08:29:28 PDT 2008
changeset 5176cf42d236 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=5176cf42d236
description:
2008-10-29 Gary Benson <gbenson at redhat.com>
PR icedtea/238:
* ports/hotspot/src/share/vm/shark/sharkBlock.cpp
(SharkBlock::parse): Fix copy-and-paste error in f2l.
diffstat:
2 files changed, 7 insertions(+), 1 deletion(-)
ChangeLog | 6 ++++++
ports/hotspot/src/share/vm/shark/sharkBlock.cpp | 2 +-
diffs (25 lines):
diff -r 27198ae52677 -r 5176cf42d236 ChangeLog
--- a/ChangeLog Tue Oct 28 17:27:18 2008 -0400
+++ b/ChangeLog Wed Oct 29 11:29:20 2008 -0400
@@ -1,3 +1,9 @@ 2008-10-27 Deepak Bhole <dbhole at redhat
+2008-10-29 Gary Benson <gbenson at redhat.com>
+
+ PR icedtea/238:
+ * ports/hotspot/src/share/vm/shark/sharkBlock.cpp
+ (SharkBlock::parse): Fix copy-and-paste error in f2l.
+
2008-10-27 Deepak Bhole <dbhole at redhat.com>
* rt/net/sourceforge/jnlp/runtime/JNLPSecurityManager.java: Act on window
diff -r 27198ae52677 -r 5176cf42d236 ports/hotspot/src/share/vm/shark/sharkBlock.cpp
--- a/ports/hotspot/src/share/vm/shark/sharkBlock.cpp Tue Oct 28 17:27:18 2008 -0400
+++ b/ports/hotspot/src/share/vm/shark/sharkBlock.cpp Wed Oct 29 11:29:20 2008 -0400
@@ -731,7 +731,7 @@ void SharkBlock::parse()
pop()->jfloat_value(), SharkType::jint_type())));
break;
case Bytecodes::_f2l:
- push(SharkValue::create_jint(
+ push(SharkValue::create_jlong(
builder()->CreateFPToSI(
pop()->jfloat_value(), SharkType::jlong_type())));
break;
More information about the distro-pkg-dev
mailing list