diff options
| author | Austin Clements <austin@google.com> | 2023-04-19 14:58:47 -0400 |
|---|---|---|
| committer | Austin Clements <austin@google.com> | 2023-04-20 16:05:23 +0000 |
| commit | ef8e3b7fa44b5714f534449dc8412c352bf1b2be (patch) | |
| tree | ba9c4531a6c9ecc287598ab7fd8215fae44998d7 /src/runtime/runtime1.go | |
| parent | 921699fe5f67a2e5246badc8f626cc70a615ad1c (diff) | |
| download | go-ef8e3b7fa44b5714f534449dc8412c352bf1b2be.tar.xz | |
runtime: tidy _Stack* constant naming
For #59670.
Change-Id: I4476d6f92663e8a825d063d6e6a7fc9a2ac99d4d
Reviewed-on: https://go-review.googlesource.com/c/go/+/486381
Run-TryBot: Austin Clements <austin@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Cherry Mui <cherryyz@google.com>
Diffstat (limited to 'src/runtime/runtime1.go')
| -rw-r--r-- | src/runtime/runtime1.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/runtime1.go b/src/runtime/runtime1.go index 98c5c84c01..65bed433c3 100644 --- a/src/runtime/runtime1.go +++ b/src/runtime/runtime1.go @@ -286,7 +286,7 @@ func check() { testAtomic64() - if _FixedStack != round2(_FixedStack) { + if fixedStack != round2(fixedStack) { throw("FixedStack is not power-of-2") } |
