aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/compile/internal/gc/asm_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/compile/internal/gc/asm_test.go')
-rw-r--r--src/cmd/compile/internal/gc/asm_test.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/cmd/compile/internal/gc/asm_test.go b/src/cmd/compile/internal/gc/asm_test.go
index 08ec638f44..95c354380e 100644
--- a/src/cmd/compile/internal/gc/asm_test.go
+++ b/src/cmd/compile/internal/gc/asm_test.go
@@ -909,6 +909,20 @@ var linuxAMD64Tests = []*asmTest{
`,
[]string{"b\\+40\\(SP\\)"},
},
+ {
+ `
+ func f73(a,b [3]int16) bool {
+ return a == b
+ }`,
+ []string{"\tCMPL\t[A-Z]"},
+ },
+ {
+ `
+ func f74(a,b [12]int8) bool {
+ return a == b
+ }`,
+ []string{"\tCMPQ\t[A-Z]", "\tCMPL\t[A-Z]"},
+ },
}
var linux386Tests = []*asmTest{