8000228: Missing call to cr() when printing entry_point in nmethod, in os::print_location
authorstefank
Mon, 01 Oct 2012 13:29:11 +0200
changeset 13923 4271ff38528f
parent 13922 ab7d352debe6
child 13924 159131321ed4
8000228: Missing call to cr() when printing entry_point in nmethod, in os::print_location Reviewed-by: brutisso, neliasso
hotspot/src/share/vm/runtime/os.cpp
--- a/hotspot/src/share/vm/runtime/os.cpp	Mon Oct 01 13:29:11 2012 +0200
+++ b/hotspot/src/share/vm/runtime/os.cpp	Mon Oct 01 13:29:11 2012 +0200
@@ -878,6 +878,7 @@
         st->print(" for ");
         nm->method()->print_value_on(st);
       }
+      st->cr();
       nm->print_nmethod(verbose);
       return;
     }