From: Keith Randall Date: Fri, 26 Jul 2013 00:40:29 +0000 (-0700) Subject: 5c: fix pc recalculation in the presence of AFUNCDATA X-Git-Tag: go1.2rc2~938 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=de6da4a8bdce935ba71f585bb458272cc781dd9a;p=gostls13.git 5c: fix pc recalculation in the presence of AFUNCDATA This makes CL 11683043 not break arm anymore. R=golang-dev, bradfitz, dave CC=golang-dev https://golang.org/cl/11888043 --- diff --git a/src/cmd/5c/reg.c b/src/cmd/5c/reg.c index 030b0c327e..25bfc58222 100644 --- a/src/cmd/5c/reg.c +++ b/src/cmd/5c/reg.c @@ -461,6 +461,7 @@ brk: case AGLOBL: case ANAME: case ASIGNAME: + case AFUNCDATA: break; } }