8278534: Remove some unnecessary code in MethodLiveness::init_basic_blocks

Reviewed-by: chagedorn
This commit is contained in:
Hamlin Li 2021-12-16 11:35:42 +00:00
parent 0bddd8af61
commit 7edcd34869

View File

@ -97,8 +97,6 @@ void MethodLiveness::compute_liveness() {
void MethodLiveness::init_basic_blocks() {
bool bailout = false;
int method_len = method()->code_size();
ciMethodBlocks *mblocks = method()->get_method_blocks();
@ -255,10 +253,6 @@ void MethodLiveness::init_basic_blocks() {
// We will patch up jsr/rets in a subsequent pass.
ret_list->append(current_block);
break;
case Bytecodes::_breakpoint:
// Bail out of there are breakpoints in here.
bailout = true;
break;
default:
// Do nothing.
break;