diff src/share/vm/code/compiledIC.cpp @ 4559:723df37192d6

Make it possible again to build a real client libjvm, drop the UseGraal flag. Use the --vm option instead of a special -vm option in the bench command
author Gilles Duboscq <duboscq@ssw.jku.at>
date Fri, 10 Feb 2012 17:04:03 +0100
parents 75a99b4f1c98
children 33df1aeaebbf
line wrap: on
line diff
--- a/src/share/vm/code/compiledIC.cpp	Fri Feb 10 02:22:23 2012 +0100
+++ b/src/share/vm/code/compiledIC.cpp	Fri Feb 10 17:04:03 2012 +0100
@@ -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());