Commit 3511454e authored by Russ Cox's avatar Russ Cox

cmd/gc: fix 'make' in cmd/gc directory

Right now, go tool 6g -A fails complaining about 'any' type.

TBR=r
CC=golang-codereviews
https://golang.org/cl/156200044
parent 9dc6764d
......@@ -182,6 +182,8 @@ compile(Node *fn)
yyerror("missing function body", fn);
goto ret;
}
if(debug['A'])
goto ret;
emitptrargsmap();
goto ret;
}
......
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