]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/gc: fix 'make' in cmd/gc directory
authorRuss Cox <rsc@golang.org>
Tue, 14 Oct 2014 18:58:25 +0000 (14:58 -0400)
committerRuss Cox <rsc@golang.org>
Tue, 14 Oct 2014 18:58:25 +0000 (14:58 -0400)
Right now, go tool 6g -A fails complaining about 'any' type.

TBR=r
CC=golang-codereviews
https://golang.org/cl/156200044

src/cmd/gc/pgen.c

index 50c03788e89d762ff770e43de22560ce74c9a2b7..39028e3f88900942567721782c653d6035614d36 100644 (file)
@@ -182,6 +182,8 @@ compile(Node *fn)
                        yyerror("missing function body", fn);
                        goto ret;
                }
+               if(debug['A'])
+                       goto ret;
                emitptrargsmap();
                goto ret;
        }