diff options
Diffstat (limited to 'test/codegen/switch.go')
| -rw-r--r-- | test/codegen/switch.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/codegen/switch.go b/test/codegen/switch.go index c3c24e2e11..603e0befbb 100644 --- a/test/codegen/switch.go +++ b/test/codegen/switch.go @@ -80,19 +80,19 @@ func mimetype(ext string) string { // arm64: `MOVB\s1\(R.*\), R.*$`, `CMPW\s\$104, R.*$`, -`cmpstring` switch ext { // amd64: `CMPL\s\(.*\), \$1836345390$` - // arm64: `CMPW\s\$1836345390, R.*$` + // arm64: `MOVD\s\$1836345390`, `CMPW\sR.*, R.*$` case ".htm": return "A" // amd64: `CMPL\s\(.*\), \$1953457454$` - // arm64: `CMPW\s\$1953457454, R.*$` + // arm64: `MOVD\s\$1953457454`, `CMPW\sR.*, R.*$` case ".eot": return "B" // amd64: `CMPL\s\(.*\), \$1735815982$` - // arm64: `CMPW\s\$1735815982, R.*$` + // arm64: `MOVD\s\$1735815982`, `CMPW\sR.*, R.*$` case ".svg": return "C" // amd64: `CMPL\s\(.*\), \$1718907950$` - // arm64: `CMPW\s\$1718907950, R.*$` + // arm64: `MOVD\s\$1718907950`, `CMPW\sR.*, R.*$` case ".ttf": return "D" default: |
