Commit b5f54db3 authored by Russ Cox's avatar Russ Cox

gc: bug267

R=ken2
CC=golang-dev
https://golang.org/cl/1067042
parent 371b77ad
......@@ -797,6 +797,7 @@ l0:
* i said it was clumsy.
*/
case '(':
case '[':
if(loophack || lstk != nil) {
h = malloc(sizeof *h);
h->v = loophack;
......@@ -806,6 +807,7 @@ l0:
}
goto lx;
case ')':
case ']':
if(lstk != nil) {
h = lstk;
loophack = h->v;
......
......@@ -185,7 +185,3 @@ panic: barCount != 1
panic PC=xxx
BUG
=========== bugs/bug267.go
bugs/bug267.go:14: syntax error: unexpected {, expecting :
BUG
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