mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Fix -Wshorten-64-to-32 in 4f802828f4
This commit is contained in:
parent
4f802828f4
commit
928bb17770
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@
|
|||
&& fastpath_applied_iseq_p(ci, captured_cc, iseq = def_iseq_ptr(vm_cc_cme(captured_cc)->def))) {
|
||||
|
||||
int param_size = iseq->body->param.size;
|
||||
int sp_inc = sp_inc_of_sendish(ci);
|
||||
int sp_inc = (int)sp_inc_of_sendish(ci);
|
||||
|
||||
fprintf(f, "{\n");
|
||||
% # JIT: Declare stack_size to be used in some macro of _mjit_compile_insn_body.erb
|
||||
|
|
Loading…
Reference in a new issue