8253728: tests fail with "assert(fr.is_compiled_frame()) failed: Wrong frame type"

Reviewed-by: kvn
This commit is contained in:
Patric Hedlin 2020-09-28 21:48:55 +00:00
parent 527b0e44eb
commit 70b0fccf79

View File

@ -1623,7 +1623,6 @@ void Deoptimization::deoptimize_frame_internal(JavaThread* thread, intptr_t* id,
while (fr.id() != id) {
fr = fr.sender(&reg_map);
}
assert(fr.is_compiled_frame(), "Wrong frame type");
deoptimize(thread, fr, reason);
}