Commit 2cc9d339 authored by Russ Cox's avatar Russ Cox

fix build

bug introduced in https://golang.org/cl/1886043

R=r
CC=golang-dev
https://golang.org/cl/1848047
parent 0a9a3c12
...@@ -300,12 +300,10 @@ loop: ...@@ -300,12 +300,10 @@ loop:
p->pcond = q; p->pcond = q;
} }
xfol(p->link); xfol(p->link);
if(a != ATEXT) { q = brchain(p->pcond);
q = brchain(p->pcond); if(q->mark) {
if(q->mark) { p->pcond = q;
p->pcond = q; return;
return;
}
} }
p = q; p = q;
goto loop; goto loop;
......
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