comparison src/share/vm/runtime/os.cpp @ 6816:87ac5c0a404d

8000228: Missing call to cr() when printing entry_point in nmethod, in os::print_location Reviewed-by: brutisso, neliasso
author stefank
date Mon, 01 Oct 2012 13:29:11 +0200
parents 85f1cded9793
children 716c64bda5ba
comparison
equal deleted inserted replaced
6815:86af3dacab81 6816:87ac5c0a404d
876 addr, (int)(addr - nm->entry_point()), nm); 876 addr, (int)(addr - nm->entry_point()), nm);
877 if (verbose) { 877 if (verbose) {
878 st->print(" for "); 878 st->print(" for ");
879 nm->method()->print_value_on(st); 879 nm->method()->print_value_on(st);
880 } 880 }
881 st->cr();
881 nm->print_nmethod(verbose); 882 nm->print_nmethod(verbose);
882 return; 883 return;
883 } 884 }
884 st->print_cr(INTPTR_FORMAT " is at code_begin+%d in ", addr, (int)(addr - b->code_begin())); 885 st->print_cr(INTPTR_FORMAT " is at code_begin+%d in ", addr, (int)(addr - b->code_begin()));
885 b->print_on(st); 886 b->print_on(st);