From: Guoqi Chen Date: Mon, 27 Mar 2023 03:44:05 +0000 (+0800) Subject: runtime: clean atomic_loong64.s of unnecessary package references X-Git-Tag: go1.21rc1~1121 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=c52069361a3730f81c7be63251fa2064986cf867;p=gostls13.git runtime: clean atomic_loong64.s of unnecessary package references The symbols are all defined within the same file, no need to reference through package names. Change-Id: I81c27831e85666ebd26d346aeb8f023e52d98acc Reviewed-on: https://go-review.googlesource.com/c/go/+/479497 Reviewed-by: Keith Randall Reviewed-by: Keith Randall Reviewed-by: Ian Lance Taylor TryBot-Result: Gopher Robot Auto-Submit: Ian Lance Taylor Run-TryBot: Keith Randall Run-TryBot: Ian Lance Taylor Reviewed-by: WANG Xuerui --- diff --git a/src/runtime/internal/atomic/atomic_loong64.s b/src/runtime/internal/atomic/atomic_loong64.s index 3d802beaa7..34193add3e 100644 --- a/src/runtime/internal/atomic/atomic_loong64.s +++ b/src/runtime/internal/atomic/atomic_loong64.s @@ -89,7 +89,7 @@ TEXT ·Xaddint64(SB), NOSPLIT, $0-24 // } else // return 0; TEXT ·Casp1(SB), NOSPLIT, $0-25 - JMP runtime∕internal∕atomic·Cas64(SB) + JMP ·Cas64(SB) // uint32 xadd(uint32 volatile *ptr, int32 delta) // Atomically: @@ -294,13 +294,13 @@ TEXT ·Loadp(SB),NOSPLIT|NOFRAME,$0-16 // uint32 runtime∕internal∕atomic·LoadAcq(uint32 volatile* ptr) TEXT ·LoadAcq(SB),NOSPLIT|NOFRAME,$0-12 - JMP atomic·Load(SB) + JMP ·Load(SB) // uint64 ·LoadAcq64(uint64 volatile* ptr) TEXT ·LoadAcq64(SB),NOSPLIT|NOFRAME,$0-16 - JMP atomic·Load64(SB) + JMP ·Load64(SB) // uintptr ·LoadAcquintptr(uintptr volatile* ptr) TEXT ·LoadAcquintptr(SB),NOSPLIT|NOFRAME,$0-16 - JMP atomic·Load64(SB) + JMP ·Load64(SB)