Skip to content

Commit bdf2005

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

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎src/hotspot/share/oops/method.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -1265,8 +1265,10 @@ void Method::set_code(const methodHandle& mh, CompiledMethod *code) {
12651265
// Instantly compiled code can execute.
12661266
if (!mh->is_method_handle_intrinsic())
12671267
mh->_from_interpreted_entry = mh->get_i2c_entry();
1268-
if (mh->is_continuation_enter_intrinsic())
1268+
if (mh->is_continuation_enter_intrinsic()) {
12691269
mh->_i2i_entry = mh->get_i2c_entry(); // this is the entry used when we're in interpreter-only mode; see InterpreterMacroAssembler::jump_from_interpreted
1270+
mh->_from_interpreted_entry = mh->get_i2c_entry();
1271+
}
12701272
}
12711273

12721274

0 commit comments

Comments
 (0)
Please sign in to comment.