changeset 1675:f235bdfcafe2

2009-02-26 Gary Benson <gbenson@redhat.com> * ports/hotspot/src/share/vm/shark/sharkBlock.cpp (SharkBlock::call_register_finalizer): Fix mismatch. (transplanted from 90de0ba944221897a277e0ef27e267232b04ea6a)
author Gary Benson <gbenson@redhat.com>
date Thu, 26 Feb 2009 17:34:19 +0000
parents bf3d642b5029
children f1c437068017
files ChangeLog ports/hotspot/src/share/vm/shark/sharkBlock.cpp
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Thu Feb 26 10:24:35 2009 -0500
+++ b/ChangeLog	Thu Feb 26 17:34:19 2009 +0000
@@ -71,6 +71,11 @@
 
 2009-02-26  Gary Benson  <gbenson@redhat.com>
 
+	* ports/hotspot/src/share/vm/shark/sharkBlock.cpp
+	(SharkBlock::call_register_finalizer): Fix mismatch.
+
+2009-02-26  Gary Benson  <gbenson@redhat.com>
+
 	PR icedtea/202:
 	* ports/hotspot/src/share/vm/shark/sharkRuntime.hpp
 	(SharkRuntime::_register_finalizer): New variable.
--- a/ports/hotspot/src/share/vm/shark/sharkBlock.cpp	Thu Feb 26 10:24:35 2009 -0500
+++ b/ports/hotspot/src/share/vm/shark/sharkBlock.cpp	Thu Feb 26 17:34:19 2009 +0000
@@ -1191,7 +1191,7 @@
       builder()->CreateAnd(
         access_flags,
         LLVMValue::jint_constant(JVM_ACC_HAS_FINALIZER)),
-      LLVMValue::intptr_constant(0)),
+      LLVMValue::jint_constant(0)),
     do_call, done);
 
   builder()->SetInsertPoint(do_call);