diff options
| author | Mark Freeman <mark@golang.org> | 2026-04-10 16:55:29 -0400 |
|---|---|---|
| committer | Mark Freeman <mark@golang.org> | 2026-04-10 14:20:24 -0700 |
| commit | b7db5702b0743209c7bc9fb4e4c8683549325621 (patch) | |
| tree | b9ec2ceebed86bfc98bd72cf6b7c2aa85289a3a8 /src/cmd/compile | |
| parent | ccf4ba99a90f6f1366daef776ae90187c9f3c6b1 (diff) | |
| download | go-b7db5702b0743209c7bc9fb4e4c8683549325621.tar.xz | |
cmd/compile/internal/noder: revert to UIR V3
Upgrading to V4 early doesn't seem to make much sense while we refine
things. Any change to encoding would require another version gate and
propagation; this gets tedious fast.
Instead, let's keep on V3 and test locally with V4. We can commit
skipped tests as we refine and then turn them all on *with* the bump
up to V4.
Change-Id: I571715e5da75095612f68b224c82e6d22ad3ab25
Reviewed-on: https://go-review.googlesource.com/c/go/+/765444
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Alan Donovan <adonovan@google.com>
Auto-Submit: Mark Freeman <markfreeman@google.com>
Diffstat (limited to 'src/cmd/compile')
| -rw-r--r-- | src/cmd/compile/internal/noder/unified.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd/compile/internal/noder/unified.go b/src/cmd/compile/internal/noder/unified.go index 320fb3c75a..2a84a9aee4 100644 --- a/src/cmd/compile/internal/noder/unified.go +++ b/src/cmd/compile/internal/noder/unified.go @@ -25,8 +25,8 @@ import ( ) // uirVersion is the unified IR version to use for encoding/decoding. -// Use V4 for generic methods. -const uirVersion = pkgbits.V4 +// Use V4 for generic methods; keep at V3 while we refine and test. +const uirVersion = pkgbits.V3 // localPkgReader holds the package reader used for reading the local // package. It exists so the unified IR linker can refer back to it |
