Skip to content

Commit

Permalink
fix stack local offset size for passing argument (#101103)
Browse files Browse the repository at this point in the history
  • Loading branch information
saitama951 authored Apr 30, 2024
1 parent bb61fb5 commit 8283049
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 8283049

Please sign in to comment.