File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -483,7 +483,7 @@ let expand_instruction instr =
483483 emit (Pmv (X30 , X2 ));
484484 if sg.sig_cc.cc_vararg then begin
485485 let n = arguments_size sg in
486- let extra_sz = if n > = 8 then 0 else align 16 ((8 - n) * wordsize) in
486+ let extra_sz = if n > = 8 then 0 else align ((8 - n) * wordsize) 16 in
487487 let full_sz = Z. add sz (Z. of_uint extra_sz) in
488488 expand_addptrofs X2 X2 (Ptrofs. repr (Z. neg full_sz));
489489 expand_storeind_ptr X30 X2 ofs;
@@ -501,7 +501,7 @@ let expand_instruction instr =
501501 let extra_sz =
502502 if sg.sig_cc.cc_vararg then begin
503503 let n = arguments_size sg in
504- if n > = 8 then 0 else align 16 ((8 - n) * wordsize)
504+ if n > = 8 then 0 else align ((8 - n) * wordsize) 16
505505 end else 0 in
506506 expand_addptrofs X2 X2 (Ptrofs. repr (Z. add sz (Z. of_uint extra_sz)))
507507
You can’t perform that action at this time.
0 commit comments