changeset 1174:2a9a995b582d

2008-11-04 Gary Benson <gbenson@redhat.com> * ports/hotspot/src/share/vm/shark/sharkBlock.cpp (SharkBlock::parse): Fix syntax errors.
author Gary Benson <gbenson@redhat.com>
date Tue, 04 Nov 2008 09:31:55 -0500
parents 69e3a572fc2c
children f9592f3296d6 1fa9f674cf4d
files ChangeLog ports/hotspot/src/share/vm/shark/sharkBlock.cpp
diffstat 2 files changed, 8 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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@redhat.com>
+
+	* ports/hotspot/src/share/vm/shark/sharkBlock.cpp
+	(SharkBlock::parse): Fix syntax errors.
+
 2008-11-04  Gary Benson  <gbenson@redhat.com>
 
 	PR icedtea/244:
--- 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 @@
         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 @@
         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 @@
         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();