diff src/share/vm/oops/methodData.hpp @ 8000:d05ff4bf41b3

Merge
author vlivanov
date Thu, 07 Feb 2013 12:23:51 -0800
parents 16fb9f942703 6a51fc70a15e
children 5fc51c1ecdeb b84fd7d73702
line wrap: on
line diff
--- a/src/share/vm/oops/methodData.hpp	Wed Feb 06 15:22:32 2013 -0800
+++ b/src/share/vm/oops/methodData.hpp	Thu Feb 07 12:23:51 2013 -0800
@@ -1469,7 +1469,7 @@
   void inc_decompile_count() {
     _nof_decompiles += 1;
     if (decompile_count() > (uint)PerMethodRecompilationCutoff) {
-      method()->set_not_compilable(CompLevel_full_optimization);
+      method()->set_not_compilable(CompLevel_full_optimization, true, "decompile_count > PerMethodRecompilationCutoff");
     }
   }