diff options
| author | Johan Brandhorst-Satzkorn <johan.brandhorst@gmail.com> | 2022-10-19 21:24:52 -0700 |
|---|---|---|
| committer | Johan Brandhorst-Satzkorn <johan.brandhorst@gmail.com> | 2022-10-23 17:42:11 +0000 |
| commit | 85196fc982ead65ea56c377c2e381eabff329773 (patch) | |
| tree | ab850c7e2c7c0018efe510a1f24b8864ec03cada /src/cmd/compile/internal/ssa/regalloc.go | |
| parent | 5b606a9d2b7649532fe25794fa6b99bd24e7697c (diff) | |
| download | go-85196fc982ead65ea56c377c2e381eabff329773.tar.xz | |
cmd/internal/ssa: correct references to _gen folder
The gen folder was renamed to _gen in CL 435472, but references in code
and docs were not updated. This updates the references.
Change-Id: Ibadc0cdcb5bed145c3257b58465a8df370487ae5
Reviewed-on: https://go-review.googlesource.com/c/go/+/444355
Reviewed-by: Bryan Mills <bcmills@google.com>
Reviewed-by: David Chase <drchase@google.com>
Run-TryBot: Johan Brandhorst-Satzkorn <johan.brandhorst@gmail.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Diffstat (limited to 'src/cmd/compile/internal/ssa/regalloc.go')
| -rw-r--r-- | src/cmd/compile/internal/ssa/regalloc.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/compile/internal/ssa/regalloc.go b/src/cmd/compile/internal/ssa/regalloc.go index 02faf8a7bd..806f6985c8 100644 --- a/src/cmd/compile/internal/ssa/regalloc.go +++ b/src/cmd/compile/internal/ssa/regalloc.go @@ -626,7 +626,7 @@ func (s *regAllocState) init(f *Func) { // Note that for Flag_shared (position independent code) // we do need to be careful, but that carefulness is hidden // in the rewrite rules so we always have a free register - // available for global load/stores. See gen/386.rules (search for Flag_shared). + // available for global load/stores. See _gen/386.rules (search for Flag_shared). case "amd64": s.allocatable &^= 1 << 15 // R15 case "arm": |
