mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-19 18:44:38 +02:00
7042052: Xcomp crash with PopSynchronousTest
Reviewed-by: kvn, iveresov
This commit is contained in:
parent
1ac79543d0
commit
d63a3a993b
1 changed files with 1 additions and 1 deletions
|
@ -437,7 +437,7 @@ Deoptimization::UnrollBlock* Deoptimization::fetch_unroll_info_helper(JavaThread
|
|||
deopt_sender.interpreter_frame_bci());
|
||||
Symbol* signature = method->constants()->signature_ref_at(cur.index());
|
||||
ArgumentSizeComputer asc(signature);
|
||||
sender_callee_parameters = asc.size() + cur.has_receiver() ? 1 : 0;
|
||||
sender_callee_parameters = asc.size() + (cur.has_receiver() ? 1 : 0);
|
||||
}
|
||||
|
||||
// Compute the amount the oldest interpreter frame will have to adjust
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue