Commit ac1935b3 authored by Josh Bleecher Snyder's avatar Josh Bleecher Snyder

[dev.ssa] cmd/compile: fix build

Bad rebase in CL 12439.

Change-Id: I7ad359519c6274be37456b655f19bf0ca6ac6692
Reviewed-on: https://go-review.googlesource.com/12449Reviewed-by: 's avatarJosh Bleecher Snyder <josharian@gmail.com>
parent a402b58e
...@@ -87,7 +87,7 @@ func stackalloc(f *Func) { ...@@ -87,7 +87,7 @@ func stackalloc(f *Func) {
} }
n = align(n, f.Config.PtrSize) n = align(n, f.Config.PtrSize)
f.Logf("stackalloc: %d-%d for return address\n", n, n+f.Config.ptrSize) f.Logf("stackalloc: %d-%d for return address\n", n, n+f.Config.PtrSize)
n += f.Config.PtrSize // space for return address. TODO: arch-dependent n += f.Config.PtrSize // space for return address. TODO: arch-dependent
f.RegAlloc = home f.RegAlloc = home
f.FrameSize = n f.FrameSize = n
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment