comparison src/share/vm/runtime/frame.cpp @ 1748:3e8fbc61cee8

6978355: renaming for 6961697 Summary: This is the renaming part of 6961697 to keep the actual changes small for review. Reviewed-by: kvn, never
author twisti
date Wed, 25 Aug 2010 05:27:54 -0700
parents da877bdc9000
children f195c4737aca
comparison
equal deleted inserted replaced
1747:53dbe853fb3a 1748:3e8fbc61cee8
535 st->print(" "); 535 st->print(" ");
536 _cb->print_value_on(st); 536 _cb->print_value_on(st);
537 st->cr(); 537 st->cr();
538 #ifndef PRODUCT 538 #ifndef PRODUCT
539 if (end == NULL) { 539 if (end == NULL) {
540 begin = _cb->instructions_begin(); 540 begin = _cb->code_begin();
541 end = _cb->instructions_end(); 541 end = _cb->code_end();
542 } 542 }
543 #endif 543 #endif
544 } 544 }
545 NOT_PRODUCT(if (WizardMode && Verbose) Disassembler::decode(begin, end);) 545 NOT_PRODUCT(if (WizardMode && Verbose) Disassembler::decode(begin, end);)
546 } 546 }