]> Cypherpunks repositories - gostls13.git/commit
cmd/compile: fix the index variable is shadowed in dictPass
authorLeonard Wang <wangdeyu0907@gmail.com>
Thu, 7 Oct 2021 12:14:22 +0000 (20:14 +0800)
committerDan Scales <danscales@google.com>
Thu, 7 Oct 2021 16:38:24 +0000 (16:38 +0000)
commitbe571a36c7aa7198aef4712f8c6cde633e2f380b
tree9fc3baebc38b448685ac859bc56902b1442d7af4
parentebeab63d9515b539ae627f10cfc1766eecd243aa
cmd/compile: fix the index variable is shadowed in dictPass

The CL 349613 causes this problem.
In fact, we want to use the outer i to find m.List[i],
but the newly created index variable i in the nearest
for range shadow the outer i.

Fixes #48838.

Change-Id: I10f0bd985340f9443eefaadda6fc56e4e7e9a10c
Reviewed-on: https://go-review.googlesource.com/c/go/+/354549
Run-TryBot: Cuong Manh Le <cuong.manhle.vn@gmail.com>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Keith Randall <khr@golang.org>
Reviewed-by: Dan Scales <danscales@google.com>
Trust: Dan Scales <danscales@google.com>
src/cmd/compile/internal/noder/stencil.go
test/typeparam/issue48838.go [new file with mode: 0644]