1
0
mirror of https://github.com/golang/go synced 2024-11-12 10:00:25 -07:00

cmd/gc: Missing break in esc switch.

R=rsc
CC=golang-dev
https://golang.org/cl/6594053
This commit is contained in:
Luuk van Dijk 2012-10-01 16:33:06 +02:00
parent af582674b0
commit 78ba449a3c

View File

@ -416,6 +416,7 @@ esc(EscState *e, Node *n)
// fatal("escape anaylysis missed or messed up a label: %+N", n);
n->left->sym->label = nil;
break;
case ORANGE:
// Everything but fixed array is a dereference.