1
0
mirror of https://github.com/golang/go synced 2024-11-11 22:10:22 -07:00

test: fix nosplit test, and disable nilptr3 test on arm64

Change-Id: I5d40e04395de743a8fdcfa8bdc0e580729bc66a3
Reviewed-on: https://go-review.googlesource.com/7147
Reviewed-by: Minux Ma <minux@golang.org>
Reviewed-by: Dave Cheney <dave@cheney.net>
Reviewed-by: Russ Cox <rsc@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
This commit is contained in:
Aram Hăvărneanu 2015-03-08 14:27:51 +01:00
parent 1abd8185b2
commit ddf6d8005d
2 changed files with 6 additions and 2 deletions

View File

@ -1,6 +1,7 @@
// errorcheck -0 -d=nil
// Fails on ppc64x because of incomplete optimization. See issue 9058.
// +build !ppc64,!ppc64le
// Fails on ppc64x and arm64 because of incomplete optimization.
// See issues 9058 and 10105.
// +build !ppc64,!ppc64le,!arm64
// Copyright 2013 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style

View File

@ -261,6 +261,9 @@ TestCases:
fmt.Fprintf(&buf, "#define CALL BL\n#define REGISTER (CTR)\n#define RET RETURN\n")
case "arm":
fmt.Fprintf(&buf, "#define CALL BL\n#define REGISTER (R0)\n")
case "arm64":
ptrSize = 8
fmt.Fprintf(&buf, "#define CALL BL\n#define REGISTER (R0)\n")
case "amd64":
ptrSize = 8
fmt.Fprintf(&buf, "#define REGISTER AX\n")