Commit e38eddbf authored by Dave Cheney's avatar Dave Cheney

cmd/8l: fix 386 builds

Remove set but unused variable.

R=rsc
CC=golang-dev
https://golang.org/cl/13490047
parent 1a6576db
......@@ -415,7 +415,7 @@ static Sym *symmorestack;
void
dostkoff(void)
{
Prog *p, *q, *q1;
Prog *p, *q;
int32 autoffset, deltasp;
int a;
......@@ -443,7 +443,6 @@ dostkoff(void)
autoffset = 0;
q = P;
q1 = P;
if(!(p->from.scale & NOSPLIT)) {
p = appendp(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