From 01b006fc181a5a2a3ed4eb619a3b9cb1901a90e2 Mon Sep 17 00:00:00 2001 From: Vladimir Stefanovic Date: Thu, 15 Dec 2016 17:46:44 +0100 Subject: [PATCH] test/fixedbugs: add mipsx case to issue11656 Change-Id: Ifcbd2ea19fc7fa832cd88aa857a5704c32eb4765 Reviewed-on: https://go-review.googlesource.com/34511 Reviewed-by: Brad Fitzpatrick Run-TryBot: Brad Fitzpatrick TryBot-Result: Gobot Gobot --- test/fixedbugs/issue11656.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/fixedbugs/issue11656.go b/test/fixedbugs/issue11656.go index e0ef097600..c04a66202b 100644 --- a/test/fixedbugs/issue11656.go +++ b/test/fixedbugs/issue11656.go @@ -61,9 +61,9 @@ func f(n int) { binary.BigEndian.PutUint32(ill, 0x7fe00008) // trap case "ppc64le": binary.LittleEndian.PutUint32(ill, 0x7fe00008) // trap - case "mips64": + case "mips", "mips64": binary.BigEndian.PutUint32(ill, 0x00000034) // trap - case "mips64le": + case "mipsle", "mips64le": binary.LittleEndian.PutUint32(ill, 0x00000034) // trap case "s390x": binary.BigEndian.PutUint32(ill, 0) // undefined instruction -- 2.50.0