]> Cypherpunks repositories - gostls13.git/commit
cmd/compile: fix exporting of function bodies
authorMatthew Dempsky <mdempsky@google.com>
Thu, 15 Jun 2017 02:57:11 +0000 (19:57 -0700)
committerMatthew Dempsky <mdempsky@google.com>
Thu, 15 Jun 2017 04:17:30 +0000 (04:17 +0000)
commitff0748670c42c025c5eb8a0f8bc8b6266e90a38f
tree4768a0639cf362956435b375b12bb5fa607e89b8
parent79d05e75ca38f0e4b9986bbba4cd56398428f9fb
cmd/compile: fix exporting of function bodies

Before CL 36170, we identified all function bodies that needed to be
exported before writing any export data.

With CL 36170, we started identifying additional functions while
exporting function bodies. As a consequence, we cannot use a
range-based for loop for iterating over function bodies anymore.

Fixes #18895.

Change-Id: I9cbefa8d311ca8c9898c8272b2ac365976b02396
Reviewed-on: https://go-review.googlesource.com/45817
Run-TryBot: Matthew Dempsky <mdempsky@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Robert Griesemer <gri@golang.org>
src/cmd/compile/internal/gc/bexport.go
test/fixedbugs/issue18895.dir/p.go [new file with mode: 0644]
test/fixedbugs/issue18895.dir/q.go [new file with mode: 0644]
test/fixedbugs/issue18895.go [new file with mode: 0644]