1
0
mirror of https://github.com/golang/go synced 2024-11-20 07:34:40 -07:00

fix bug in codegen when we modified move instruction instead

of text.

R=rsc
APPROVED=rsc
DELTA=3  (1 added, 2 deleted, 0 changed)
OCL=31575
CL=31575
This commit is contained in:
Kai Backman 2009-07-13 20:33:59 -07:00
parent ffb4b0d7b7
commit 7258bac6e8

View File

@ -79,6 +79,7 @@ codgen(Node *n, Node *nn)
nearln = nn->lineno; nearln = nn->lineno;
p = gtext(n1->sym, stkoff); p = gtext(n1->sym, stkoff);
sp = p;
/* /*
* isolate first argument * isolate first argument
@ -100,7 +101,6 @@ codgen(Node *n, Node *nn)
} }
} }
sp = p;
retok = 0; retok = 0;
canreach = 1; canreach = 1;
@ -588,4 +588,3 @@ bcomplex(Node *n, Node *c)
boolgen(n, 1, Z); boolgen(n, 1, Z);
return 0; return 0;
} }