# HG changeset patch # User vladidan # Date 1302577357 14400 # Node ID 6c9cec219ce4d82558fd75a5eefa982dfe682c2e # Parent 1dac0f3af89f408f6a067c7f6970f38ab8304026 7005865: Crash when running with PrintIRWithLIR Summary: the failure is caused by uninitialized bci number Reviewed-by: iveresov diff -r 1dac0f3af89f -r 6c9cec219ce4 src/share/vm/c1/c1_Instruction.cpp --- a/src/share/vm/c1/c1_Instruction.cpp Thu Apr 07 20:26:41 2011 -0700 +++ b/src/share/vm/c1/c1_Instruction.cpp Mon Apr 11 23:02:37 2011 -0400 @@ -559,7 +559,7 @@ // of the inserted block, without recomputing the values of the other blocks // in the CFG. Therefore the value of "depth_first_number" in BlockBegin becomes meaningless. BlockBegin* BlockBegin::insert_block_between(BlockBegin* sux) { - BlockBegin* new_sux = new BlockBegin(-99); + BlockBegin* new_sux = new BlockBegin(end()->state()->bci()); // mark this block (special treatment when block order is computed) new_sux->set(critical_edge_split_flag);