We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27e8329 commit cdadd5fCopy full SHA for cdadd5f
src/inline_asm.rs
@@ -871,7 +871,8 @@ fn call_inline_asm<'tcx>(
871
inputs: Vec<(Size, Value)>,
872
outputs: Vec<(Size, CPlace<'tcx>)>,
873
) {
874
- let stack_slot = fx.create_stack_slot(u32::try_from(slot_size.bytes()).unwrap(), 16);
+ let stack_slot =
875
+ fx.create_stack_slot(u32::try_from(slot_size.bytes().next_multiple_of(16)).unwrap(), 16);
876
877
let inline_asm_func = fx
878
.module
0 commit comments