authorgravatar for 178735591+87flowers@users.noreply.github.com87flowers <178735591+87flowers@users.noreply.github.com> 2024-10-16 21:18:46+01:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-02-22 17:09:20-08:00
log855445f18efb2f550e2f0953b2b1808f33137506
tree0cdd0d6c6209e8fd10407db456989afd12f8cb9d
parent6013b53702648bc904c7e8bab2e067d739667b80

arch/sparc64/CodeGen: Fix indentation in realStackOffset


1 files changed, 6 insertions(+), 6 deletions(-)

src/arch/sparc64/CodeGen.zig+6-6
......@@ -4394,12 +4394,12 @@ fn processDeath(self: *Self, inst: Air.Inst.Index) void {
43944394
43954395/// Turns stack_offset MCV into a real SPARCv9 stack offset usable for asm.
43964396fn realStackOffset(off: u32) u32 {
4397 return off
4398 // SPARCv9 %sp points away from the stack by some amount.
4399 + abi.stack_bias
4400 // The first couple bytes of each stack frame is reserved
4401 // for ABI and hardware purposes.
4402 + abi.stack_reserved_area;
4397 return off +
4398 // SPARCv9 %sp points away from the stack by some amount.
4399 abi.stack_bias +
4400 // The first couple bytes of each stack frame is reserved
4401 // for ABI and hardware purposes.
4402 abi.stack_reserved_area;
44034403 // Only after that we have the usable stack frame portion.
44044404}
44054405