diff options
| author | Michael Anthony Knyszek <mknyszek@google.com> | 2022-05-03 15:40:40 +0000 |
|---|---|---|
| committer | Michael Knyszek <mknyszek@google.com> | 2022-05-03 15:51:30 +0000 |
| commit | e7508598bb8007ec2a04cb25a6076643af05c033 (patch) | |
| tree | fd096c531d20125eaec3a48dce0c02b6f3e6b18a /src/runtime/export_test.go | |
| parent | f01c20bf2ba889e5c9e3565175cc4276f9c11516 (diff) | |
| download | go-e7508598bb8007ec2a04cb25a6076643af05c033.tar.xz | |
runtime: use Escape instead of escape in export_test.go
I landed the bottom CL of my stack without rebasing or retrying trybots,
but in the rebase "escape" was removed in favor of "Escape."
Change-Id: Icdc4d8de8b6ebc782215f2836cd191377cc211df
Reviewed-on: https://go-review.googlesource.com/c/go/+/403755
Reviewed-by: Bryan Mills <bcmills@google.com>
Run-TryBot: Michael Knyszek <mknyszek@google.com>
Diffstat (limited to 'src/runtime/export_test.go')
| -rw-r--r-- | src/runtime/export_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/export_test.go b/src/runtime/export_test.go index 0d17ddfe30..380bf9cb13 100644 --- a/src/runtime/export_test.go +++ b/src/runtime/export_test.go @@ -1414,7 +1414,7 @@ func NewGCCPULimiter(now int64, gomaxprocs int32) *GCCPULimiter { // do 64-bit atomics on it, and if it gets stack-allocated // on a 32-bit architecture, it may get allocated unaligned // space. - l := escape(new(GCCPULimiter)) + l := Escape(new(GCCPULimiter)) l.limiter.resetCapacity(now, gomaxprocs) return l } |
