Change-Id: I999b57ef5535c18e02cc27c9bc9f896d73126b50
Reviewed-on: https://go-review.googlesource.com/10674
Reviewed-by: Russ Cox <rsc@golang.org>
Reviewed-by: Minux Ma <minux@golang.org>
// Annoying aliases.
instructions["BR"] = ppc64.ABR
instructions["BL"] = ppc64.ABL
- instructions["RETURN"] = ppc64.ARETURN
return &Arch{
LinkArch: &ppc64.Linkppc64,
// }
NOP $4
-// RETURN
+// RET
//
// LRETRN comma // asm doesn't support the trailing comma.
// {
// outcode(int($1), &nullgen, 0, &nullgen);
// }
- RETURN
+ RET
// END
//
ALAST
// aliases
- ABR = obj.AJMP
- ABL = obj.ACALL
- ARETURN = obj.ARET
+ ABR = obj.AJMP
+ ABL = obj.ACALL
)