1
0
mirror of https://github.com/golang/go synced 2024-11-21 13:24:40 -07:00

8g: fix out of register bug in byte(x) code

R=ken2
CC=golang-dev
https://golang.org/cl/223070
This commit is contained in:
Russ Cox 2010-02-26 14:21:52 -08:00
parent e6443f6255
commit bc6878331a

View File

@ -215,14 +215,9 @@ cgen(Node *n, Node *res)
break;
}
mgen(nl, &n1, res);
if(n->type->width > widthptr)
tempname(&n2, n->type);
else
regalloc(&n2, n->type, res);
tempname(&n2, n->type);
gmove(&n1, &n2);
gmove(&n2, res);
if(n2.op == OREGISTER)
regfree(&n2);
mfree(&n1);
break;