Skip to content

Commit 106719d

Browse files
committedApr 22, 2021
-
1 parent b16634b commit 106719d

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed
 

‎src/hotspot/share/runtime/frame.cpp

+1-10
Original file line numberDiff line numberDiff line change
@@ -320,18 +320,9 @@ bool frame::can_be_deoptimized() const {
320320
if (!is_compiled_frame()) return false;
321321
CompiledMethod* nm = (CompiledMethod*)_cb;
322322

323-
if( !nm->can_be_deoptimized() )
323+
if(!nm->can_be_deoptimized())
324324
return false;
325325

326-
// address* pc_addr = &(((address*) sp())[-1]); // TODO: PLATFORM
327-
// if (Continuation::is_return_barrier_entry(*pc_addr)) {
328-
// log_trace(jvmcont)("Can't deopt entry:");
329-
// if (log_is_enabled(Trace, jvmcont)) {
330-
// print_value_on(tty, NULL);
331-
// }
332-
// return false;
333-
// }
334-
335326
return !nm->is_at_poll_return(pc());
336327
}
337328

0 commit comments

Comments
 (0)
Please sign in to comment.