From: Rhys Hiltner Date: Tue, 3 May 2022 20:55:40 +0000 (-0700) Subject: runtime: re-add import in trace.go X-Git-Tag: go1.19beta1~446 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=23f13255f0a5a3dd34ee31b64e45fa87efadcb43;p=gostls13.git runtime: re-add import in trace.go CL 400795, which uses the runtime/internal/atomic package in trace.go, raced against CL 397014 removing that import. Re-add the import. Change-Id: If847ec23f9a0fdff91dab07e93d9fb1b2efed85b Reviewed-on: https://go-review.googlesource.com/c/go/+/403845 Run-TryBot: Ian Lance Taylor TryBot-Result: Gopher Robot Auto-Submit: Ian Lance Taylor Reviewed-by: Michael Knyszek Run-TryBot: Rhys Hiltner Reviewed-by: Ian Lance Taylor --- diff --git a/src/runtime/trace.go b/src/runtime/trace.go index 1525c8ba99..19c966800c 100644 --- a/src/runtime/trace.go +++ b/src/runtime/trace.go @@ -14,6 +14,7 @@ package runtime import ( "internal/goarch" + "runtime/internal/atomic" "runtime/internal/sys" "unsafe" )