diff src/share/vm/code/compiledIC.cpp @ 4562:ef00461e29af

Merge
author Christian Haeubl <christian.haeubl@oracle.com>
date Fri, 10 Feb 2012 10:16:19 -0800
parents 723df37192d6
children 33df1aeaebbf
line wrap: on
line diff
--- a/src/share/vm/code/compiledIC.cpp	Fri Feb 10 10:07:48 2012 -0800
+++ b/src/share/vm/code/compiledIC.cpp	Fri Feb 10 10:16:19 2012 -0800
@@ -529,7 +529,10 @@
   NativeJump*        jump          = nativeJump_at(method_holder->next_instruction_address());
 
   assert(method_holder->data()    == 0           || method_holder->data()    == (intptr_t)callee(), "a) MT-unsafe modification of inline cache");
-  assert(UseGraal || jump->jump_destination() == (address)-1 || jump->jump_destination() == entry, "b) MT-unsafe modification of inline cache");
+// XXX GRAAL : ??
+#ifndef GRAAL
+  assert(jump->jump_destination() == (address)-1 || jump->jump_destination() == entry, "b) MT-unsafe modification of inline cache");
+#endif
 
   // Update stub
   method_holder->set_data((intptr_t)callee());