Commit fb818eab authored by Russ Cox's avatar Russ Cox

liblink: fix arm wrapper prologue

Fixes arm build.

TBR=khr
CC=golang-codereviews
https://golang.org/cl/132700043
parent 2034dae9
...@@ -492,7 +492,7 @@ addstacksplit(Link *ctxt, LSym *cursym) ...@@ -492,7 +492,7 @@ addstacksplit(Link *ctxt, LSym *cursym)
p = appendp(ctxt, p); p = appendp(ctxt, p);
p->as = ACMP; p->as = ACMP;
p->from.type = D_REG; p->from.type = D_REG;
p->from.offset = 2; p->from.reg = 2;
p->reg = 3; p->reg = 3;
p = appendp(ctxt, p); p = appendp(ctxt, p);
......
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