Commit 0dd26f27 authored by Russ Cox's avatar Russ Cox

cmd/gc: fix build

The AKILL stuff is not ready yet and
was not meant to be in the last CL.

R=iant
CC=golang-codereviews
https://golang.org/cl/55170043
parent eb592d82
...@@ -720,9 +720,9 @@ Next: ...@@ -720,9 +720,9 @@ Next:
if(pos == -1) if(pos == -1)
goto Next1; goto Next1;
if(to->node->addrtaken) { if(to->node->addrtaken) {
if(prog->as == AKILL) //if(prog->as == AKILL)
bvset(varkill, pos); // bvset(varkill, pos);
else //else
bvset(avarinit, pos); bvset(avarinit, pos);
} else { } else {
if(info.flags & (RightRead | RightAddr)) if(info.flags & (RightRead | RightAddr))
......
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