hotspot/src/share/vm/c1/c1_LIRGenerator.cpp
changeset 5707 6c66849ed24e
parent 5702 201c5cde25bb
child 6176 4d9030fe341f
equal deleted inserted replaced
5706:0c91076143f9 5707:6c66849ed24e
   302   block->set_lir(_lir);
   302   block->set_lir(_lir);
   303 
   303 
   304   __ branch_destination(block->label());
   304   __ branch_destination(block->label());
   305 
   305 
   306   if (LIRTraceExecution &&
   306   if (LIRTraceExecution &&
   307       Compilation::current_compilation()->hir()->start()->block_id() != block->block_id() &&
   307       Compilation::current()->hir()->start()->block_id() != block->block_id() &&
   308       !block->is_set(BlockBegin::exception_entry_flag)) {
   308       !block->is_set(BlockBegin::exception_entry_flag)) {
   309     assert(block->lir()->instructions_list()->length() == 1, "should come right after br_dst");
   309     assert(block->lir()->instructions_list()->length() == 1, "should come right after br_dst");
   310     trace_block_entry(block);
   310     trace_block_entry(block);
   311   }
   311   }
   312 }
   312 }