]> Cypherpunks repositories - gostls13.git/commit
cmd/compile/internal/noder: avoid ir.Node temps in FixValue
authorMatthew Dempsky <mdempsky@google.com>
Fri, 25 Aug 2023 00:05:50 +0000 (17:05 -0700)
committerGopher Robot <gobot@golang.org>
Fri, 25 Aug 2023 16:39:04 +0000 (16:39 +0000)
commitb036d7e17f1cf5ecf9411e604fbc5bb40dc3dc95
tree514ede18b2e45ac7fc7e5b0593c3d27dca3bbc11
parent99ea5b9765dc79e8d8f7e37bd55d6ab949eb739c
cmd/compile/internal/noder: avoid ir.Node temps in FixValue

Instead of constructing an untyped basic literal IR node, having
typecheck convert it and return a new one, only to extract the
constant.Value; just have typecheck export the underlying value
conversion function, so we can call it directly.

Change-Id: Ie98f5362b3926a728d80262b0274a0b4fd023eaf
Reviewed-on: https://go-review.googlesource.com/c/go/+/522878
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Keith Randall <khr@google.com>
Reviewed-by: Cuong Manh Le <cuong.manhle.vn@gmail.com>
Auto-Submit: Matthew Dempsky <mdempsky@google.com>
Run-TryBot: Matthew Dempsky <mdempsky@google.com>
src/cmd/compile/internal/noder/helpers.go
src/cmd/compile/internal/typecheck/const.go