1
0
mirror of https://github.com/golang/go synced 2024-11-19 09:34:52 -07:00

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
This commit is contained in:
Russ Cox 2014-10-14 14:58:25 -04:00
parent 9dc6764d3c
commit 3511454e13

View File

@ -182,6 +182,8 @@ compile(Node *fn)
yyerror("missing function body", fn); yyerror("missing function body", fn);
goto ret; goto ret;
} }
if(debug['A'])
goto ret;
emitptrargsmap(); emitptrargsmap();
goto ret; goto ret;
} }