mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-18 18:14:38 +02:00
8253447: Remove buggy code introduced by 8249451
Reviewed-by: iveresov, eosterlund
This commit is contained in:
parent
282b9dcfdc
commit
f7b1ce457a
1 changed files with 2 additions and 2 deletions
|
@ -528,8 +528,8 @@ Deoptimization::UnrollBlock* Deoptimization::fetch_unroll_info_helper(JavaThread
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if ((thread->has_pending_exception() || thread->frames_to_pop_failed_realloc() > 0) && exec_mode != Unpack_uncommon_trap) {
|
if (thread->frames_to_pop_failed_realloc() > 0 && exec_mode != Unpack_uncommon_trap) {
|
||||||
assert(thread->has_pending_exception(), "should have thrown OOME/Async");
|
assert(thread->has_pending_exception(), "should have thrown OOME");
|
||||||
thread->set_exception_oop(thread->pending_exception());
|
thread->set_exception_oop(thread->pending_exception());
|
||||||
thread->clear_pending_exception();
|
thread->clear_pending_exception();
|
||||||
exec_mode = Unpack_exception;
|
exec_mode = Unpack_exception;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue