hotspot/src/share/vm/oops/methodOop.hpp
changeset 4756 da88c27a9241
parent 4750 71fd601907dc
child 5420 586d3988e72b
--- a/hotspot/src/share/vm/oops/methodOop.hpp	Wed Feb 03 12:28:30 2010 -0800
+++ b/hotspot/src/share/vm/oops/methodOop.hpp	Wed Feb 03 15:03:22 2010 -0800
@@ -596,7 +596,10 @@
   // whether it is not compilable for another reason like having a
   // breakpoint set in it.
   bool is_not_compilable(int comp_level = CompLevel_highest_tier) const;
-  void set_not_compilable(int comp_level = CompLevel_highest_tier);
+  void set_not_compilable(int comp_level = CompLevel_highest_tier, bool report = true);
+  void set_not_compilable_quietly(int comp_level = CompLevel_highest_tier) {
+    set_not_compilable(comp_level, false);
+  }
 
   bool is_not_osr_compilable() const             { return is_not_compilable() || access_flags().is_not_osr_compilable(); }
   void set_not_osr_compilable()                  { _access_flags.set_not_osr_compilable(); }