# HG changeset patch # User Christian Haeubl # Date 1331142636 28800 # Node ID e5d42eccfb29e4afcebf44d17546ad5e312b2fc2 # Parent 4d6e5ddf70e55b0dd31e776779f114650cd4d388 only print a warning in case that an endless recompilation is detected diff -r 4d6e5ddf70e5 -r e5d42eccfb29 src/share/vm/oops/methodDataOop.cpp --- a/src/share/vm/oops/methodDataOop.cpp Wed Mar 07 09:48:08 2012 -0800 +++ b/src/share/vm/oops/methodDataOop.cpp Wed Mar 07 09:50:36 2012 -0800 @@ -868,7 +868,7 @@ // TODO (ch) 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(); + //ShouldNotReachHere(); #endif method()->set_not_compilable(CompLevel_full_optimization); }