changeset in /hg/icedtea6: 2008-11-04 Gary Benson <gbenson at red...
Gary Benson
gbenson at redhat.com
Tue Nov 4 06:46:05 PST 2008
changeset 2a9a995b582d in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=2a9a995b582d
description:
2008-11-04 Gary Benson <gbenson at redhat.com>
* ports/hotspot/src/share/vm/shark/sharkBlock.cpp
(SharkBlock::parse): Fix syntax errors.
diffstat:
2 files changed, 8 insertions(+), 3 deletions(-)
ChangeLog | 5 +++++
ports/hotspot/src/share/vm/shark/sharkBlock.cpp | 6 +++---
diffs (42 lines):
diff -r 69e3a572fc2c -r 2a9a995b582d ChangeLog
--- a/ChangeLog Tue Nov 04 08:54:30 2008 -0500
+++ b/ChangeLog Tue Nov 04 09:31:55 2008 -0500
@@ -1,3 +1,8 @@ 2008-11-04 Gary Benson <gbenson at redhat
+2008-11-04 Gary Benson <gbenson at redhat.com>
+
+ * ports/hotspot/src/share/vm/shark/sharkBlock.cpp
+ (SharkBlock::parse): Fix syntax errors.
+
2008-11-04 Gary Benson <gbenson at redhat.com>
PR icedtea/244:
diff -r 69e3a572fc2c -r 2a9a995b582d ports/hotspot/src/share/vm/shark/sharkBlock.cpp
--- a/ports/hotspot/src/share/vm/shark/sharkBlock.cpp Tue Nov 04 08:54:30 2008 -0500
+++ b/ports/hotspot/src/share/vm/shark/sharkBlock.cpp Tue Nov 04 09:31:55 2008 -0500
@@ -489,7 +489,7 @@ void SharkBlock::parse()
builder()->CreateShl(
a->jint_value(),
builder()->CreateAnd(
- b->jint_value(), LLVMValue::jint_constant(0x1f))));
+ b->jint_value(), LLVMValue::jint_constant(0x1f)))));
break;
case Bytecodes::_ishr:
b = pop();
@@ -498,7 +498,7 @@ void SharkBlock::parse()
builder()->CreateAShr(
a->jint_value(),
builder()->CreateAnd(
- b->jint_value(), LLVMValue::jint_constant(0x1f))));
+ b->jint_value(), LLVMValue::jint_constant(0x1f)))));
break;
case Bytecodes::_iushr:
b = pop();
@@ -507,7 +507,7 @@ void SharkBlock::parse()
builder()->CreateLShr(
a->jint_value(),
builder()->CreateAnd(
- b->jint_value(), LLVMValue::jint_constant(0x1f))));
+ b->jint_value(), LLVMValue::jint_constant(0x1f)))));
break;
case Bytecodes::_iand:
b = pop();
More information about the distro-pkg-dev
mailing list