]> Cypherpunks repositories - gostls13.git/commit
cmd/compile: use obj.ARET instead of ppc64.ARETURN
authorAustin Clements <austin@google.com>
Wed, 3 Jun 2015 19:10:53 +0000 (15:10 -0400)
committerAustin Clements <austin@google.com>
Sat, 6 Jun 2015 00:07:31 +0000 (00:07 +0000)
commit9389a86b01bfe86053350fe587b411ab3a0a5bed
treebc752feaa087051d9159f60a93aae40bb7f33a68
parent2774b37306616380c00a4fde7f46bde1a8668ece
cmd/compile: use obj.ARET instead of ppc64.ARETURN

obj.ARET is the portable return mnemonic. ppc64.ARETURN is a legacy
alias.

This was done with
    sed -i s/ppc64\.ARETURN/obj.ARET/ cmd/compile/**/*.go
    sed -i s/ARETURN/obj.ARET/ cmd/internal/obj/ppc64/obj9.go

Change-Id: I4d8e83ff411cee764774a40ef4c7c34dcbca4e43
Reviewed-on: https://go-review.googlesource.com/10673
Reviewed-by: Russ Cox <rsc@golang.org>
Reviewed-by: Minux Ma <minux@golang.org>
src/cmd/compile/internal/ppc64/peep.go
src/cmd/compile/internal/ppc64/prog.go
src/cmd/internal/obj/ppc64/obj9.go