go/src/sync/atomic
Austin Clements 2774b37306 all: use RET instead of RETURN on ppc64
All of the architectures except ppc64 have only "RET" for the return
mnemonic. ppc64 used to have only "RETURN", but commit cf06ea6
introduced RET as a synonym for RETURN to make ppc64 consistent with
the other architectures. However, that commit was never followed up to
make the code itself consistent by eliminating uses of RETURN.

This commit replaces all uses of RETURN in the ppc64 assembly with
RET.

This was done with
    sed -i 's/\<RETURN\>/RET/' **/*_ppc64x.s
plus one manual change to syscall/asm.s.

Change-Id: I3f6c8d2be157df8841d48de988ee43f3e3087995
Reviewed-on: https://go-review.googlesource.com/10672
Reviewed-by: Rob Pike <r@golang.org>
Reviewed-by: Russ Cox <rsc@golang.org>
Reviewed-by: Minux Ma <minux@golang.org>
2015-06-06 00:07:23 +00:00
..
64bit_arm.go
asm_386.s runtime, sync/atomic: add write barrier for atomic write of pointer 2015-01-06 00:27:06 +00:00
asm_amd64.s runtime, sync/atomic: add write barrier for atomic write of pointer 2015-01-06 00:27:06 +00:00
asm_amd64p32.s runtime, sync/atomic: add write barrier for atomic write of pointer 2015-01-06 00:27:06 +00:00
asm_arm.s
asm_arm64.s sync/atomic: add support for GOARCH=arm64 2015-03-16 18:46:18 +00:00
asm_darwin_arm.s sync/atomic: darwin/arm support 2015-02-06 05:49:14 +00:00
asm_freebsd_arm.s runtime, sync/atomic: add write barrier for atomic write of pointer 2015-01-06 00:27:06 +00:00
asm_linux_arm.s [dev.cc] cmd/asm: make 4(SP) illegal except on 386 2015-02-18 03:41:29 +00:00
asm_nacl_arm.s runtime, sync/atomic: add write barrier for atomic write of pointer 2015-01-06 00:27:06 +00:00
asm_netbsd_arm.s runtime, sync/atomic: add write barrier for atomic write of pointer 2015-01-06 00:27:06 +00:00
asm_openbsd_arm.s sync/atomic: add support for openbsd/arm 2015-03-15 09:12:45 +00:00
asm_ppc64x.s all: use RET instead of RETURN on ppc64 2015-06-06 00:07:23 +00:00
atomic_linux_arm_test.go
atomic_test.go sync/atomic: skip issue 7338 test on darwin/arm64 2015-04-12 02:47:43 +00:00
doc.go
export_linux_arm_test.go
race.s
value.go sync/atomic: fix comment referencing Value.Store's argument name 2014-10-31 00:48:57 -03:00
value_test.go