Skip to content

Commit 01b006f

Browse files
Vladimir Stefanovicbradfitz
Vladimir Stefanovic
authored andcommitted
test/fixedbugs: add mipsx case to issue11656
Change-Id: Ifcbd2ea19fc7fa832cd88aa857a5704c32eb4765 Reviewed-on: https://go-review.googlesource.com/34511 Reviewed-by: Brad Fitzpatrick <[email protected]> Run-TryBot: Brad Fitzpatrick <[email protected]> TryBot-Result: Gobot Gobot <[email protected]>
1 parent 34bd7d5 commit 01b006f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/fixedbugs/issue11656.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ func f(n int) {
6161
binary.BigEndian.PutUint32(ill, 0x7fe00008) // trap
6262
case "ppc64le":
6363
binary.LittleEndian.PutUint32(ill, 0x7fe00008) // trap
64-
case "mips64":
64+
case "mips", "mips64":
6565
binary.BigEndian.PutUint32(ill, 0x00000034) // trap
66-
case "mips64le":
66+
case "mipsle", "mips64le":
6767
binary.LittleEndian.PutUint32(ill, 0x00000034) // trap
6868
case "s390x":
6969
binary.BigEndian.PutUint32(ill, 0) // undefined instruction

0 commit comments

Comments
 (0)