From: Shenghou Ma Date: Sat, 6 Jun 2015 19:24:18 +0000 (-0400) Subject: test: fix build on GOARCH=ppc64/ppc64le X-Git-Tag: go1.5beta1~325 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=21ec72c2ca5168f3f10b4594a553b3a038c8df29;p=gostls13.git test: fix build on GOARCH=ppc64/ppc64le Change-Id: Ibf2879c0034250c5699e21ecea0eb76340597a2a Reviewed-on: https://go-review.googlesource.com/10810 Reviewed-by: Austin Clements --- diff --git a/test/nosplit.go b/test/nosplit.go index 8864137eb1..596962b2c1 100644 --- a/test/nosplit.go +++ b/test/nosplit.go @@ -249,7 +249,7 @@ TestCases: switch goarch { case "ppc64", "ppc64le": ptrSize = 8 - fmt.Fprintf(&buf, "#define CALL BL\n#define REGISTER (CTR)\n#define RET RETURN\n") + fmt.Fprintf(&buf, "#define CALL BL\n#define REGISTER (CTR)\n") case "arm": fmt.Fprintf(&buf, "#define CALL BL\n#define REGISTER (R0)\n") case "arm64":