Skip to content

Commit

Permalink
fix stack local offset size for passing argument (dotnet#101103)
Browse files Browse the repository at this point in the history
  • Loading branch information
saitama951 authored and michaelgsharp committed May 8, 2024
1 parent 2be2bcf commit c7595d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mono/mono/mini/mini-s390x.c
Original file line number Diff line number Diff line change
Expand Up @@ -1580,7 +1580,7 @@ mono_arch_allocate_vars (MonoCompile *cfg)
inst->inst_offset = offset + (8 - size);
}
}
offset += MAX(size, 8);
offset += 8;
}
curinst++;
}
Expand Down

0 comments on commit c7595d5

Please sign in to comment.