]> Cypherpunks repositories - gostls13.git/commit
cmd/compile: fix escape analysis of string min/max
authorMatthew Dempsky <mdempsky@google.com>
Tue, 5 Dec 2023 20:56:04 +0000 (12:56 -0800)
committerGopher Robot <gobot@golang.org>
Tue, 5 Dec 2023 22:06:07 +0000 (22:06 +0000)
commit34416d7f6f93cd6562636e311c362ebe421f1a4c
treed39955220aad77e56c87a1f9435ca5a63875d1c8
parented30ee6c56505905880e63266641de32666e1c0b
cmd/compile: fix escape analysis of string min/max

When I was plumbing min/max support through the compiler, I was
thinking mostly about numeric argument types. As a result, I forgot
that escape analysis would need to be aware that min/max can operate
on string values, which contain pointers.

Fixes #64565.

Change-Id: I36127ce5a2da942401910fa0f9de922726c9f94d
Reviewed-on: https://go-review.googlesource.com/c/go/+/547715
Reviewed-by: Keith Randall <khr@google.com>
Reviewed-by: Mauri de Souza Meneguzzo <mauri870@gmail.com>
Auto-Submit: Matthew Dempsky <mdempsky@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
src/cmd/compile/internal/escape/call.go
test/escape_calls.go
test/fixedbugs/issue64565.go [new file with mode: 0644]
test/fixedbugs/issue64565.out [new file with mode: 0644]