hotspot/src/share/vm/jvmci/jvmciEnv.cpp
changeset 33638 ef49ed90010b
parent 33611 9abd65805e19
parent 33632 038347770a9e
child 34229 892795cc82fe
child 34185 ee71c590a456
--- a/hotspot/src/share/vm/jvmci/jvmciEnv.cpp	Thu Nov 05 19:31:57 2015 +0100
+++ b/hotspot/src/share/vm/jvmci/jvmciEnv.cpp	Fri Nov 06 11:34:03 2015 +0100
@@ -494,12 +494,12 @@
       MethodData* mdp = method()->method_data();
       if (mdp != NULL) {
         mdp->inc_decompile_count();
+#ifdef ASSERT
         if (mdp->decompile_count() > (uint)PerMethodRecompilationCutoff) {
-          // TODO (chaeubl) enable this in the fastdebug build only once we are more stable
           ResourceMark m;
           tty->print_cr("WARN: endless recompilation of %s. Method was set to not compilable.", method()->name_and_sig_as_C_string());
-          //ShouldNotReachHere();
         }
+#endif
       }
 
       // All buffers in the CodeBuffer are allocated in the CodeCache.