summaryrefslogtreecommitdiff
path: root/src/cmd/gc
diff options
context:
space:
mode:
authorR?my Oudompheng <oudomphe@phare.normalesup.org>2014-09-15 18:31:47 +0200
committerR?my Oudompheng <oudomphe@phare.normalesup.org>2014-09-15 18:31:47 +0200
commit40280c6f69bdccc21074257818fd4b37b5976679 (patch)
tree9f39a7c6ee84fb5bdb2b584d8c9f776cd90b7a13 /src/cmd/gc
parentcc2fa2c32eaa33fe704dbb4145ee545ba6135b71 (diff)
downloadgo-40280c6f69bdccc21074257818fd4b37b5976679.tar.gz
cmd/gc: don't walk static nodes generated by anylit.
During anylit run, nodes such as SLICEARR(statictmp, [:]) may be generated and are expected to be found unchanged by gen_as_init. In some walks (in particular walkselect), the statement may be walked again and lowered to its usual form, leading to a crash. Fixes issue 8017. Fixes issue 8024. Fixes issue 8058. LGTM=rsc R=golang-codereviews, dvyukov, gobot, rsc CC=golang-codereviews https://codereview.appspot.com/112080043
Diffstat (limited to 'src/cmd/gc')
-rw-r--r--src/cmd/gc/walk.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cmd/gc/walk.c b/src/cmd/gc/walk.c
index ce0f3eb95..a30fa62a6 100644
--- a/src/cmd/gc/walk.c
+++ b/src/cmd/gc/walk.c
@@ -137,6 +137,8 @@ walkstmt(Node **np)
n = *np;
if(n == N)
return;
+ if(n->dodata == 2) // don't walk, generated by anylit.
+ return;
setlineno(n);