mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-25 22:04:51 +02:00
6889869: assert(!Interpreter::bytecode_should_reexecute(code),"should not reexecute")
Reviewed-by: jrose, kvn, cfang, twisti
This commit is contained in:
parent
998bcbaf4b
commit
6af1a61656
2 changed files with 9 additions and 2 deletions
|
@ -356,8 +356,7 @@ void DebugInformationRecorder::end_scopes(int pc_offset, bool is_safepoint) {
|
|||
// search forward until it finds last.
|
||||
// In addition, it does not matter if the last PcDesc
|
||||
// is for a safepoint or not.
|
||||
if (_prev_safepoint_pc < prev->pc_offset() &&
|
||||
prev->scope_decode_offset() == last->scope_decode_offset()) {
|
||||
if (_prev_safepoint_pc < prev->pc_offset() && prev->is_same_info(last)) {
|
||||
assert(prev == last-1, "sane");
|
||||
prev->set_pc_offset(pc_offset);
|
||||
_pcs_length -= 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue