We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 282b9dc commit f7b1ce4Copy full SHA for f7b1ce4
src/hotspot/share/runtime/deoptimization.cpp
@@ -528,8 +528,8 @@ Deoptimization::UnrollBlock* Deoptimization::fetch_unroll_info_helper(JavaThread
528
}
529
#endif
530
531
- if ((thread->has_pending_exception() || thread->frames_to_pop_failed_realloc() > 0) && exec_mode != Unpack_uncommon_trap) {
532
- assert(thread->has_pending_exception(), "should have thrown OOME/Async");
+ if (thread->frames_to_pop_failed_realloc() > 0 && exec_mode != Unpack_uncommon_trap) {
+ assert(thread->has_pending_exception(), "should have thrown OOME");
533
thread->set_exception_oop(thread->pending_exception());
534
thread->clear_pending_exception();
535
exec_mode = Unpack_exception;
0 commit comments