diff options
Diffstat (limited to 'test/codegen')
| -rw-r--r-- | test/codegen/comparisons.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/codegen/comparisons.go b/test/codegen/comparisons.go index 99589c4ce8..6ffc73482a 100644 --- a/test/codegen/comparisons.go +++ b/test/codegen/comparisons.go @@ -235,7 +235,7 @@ func CmpToZero(a, b, d int32, e, f int64, deOptC0, deOptC1 bool) int32 { // arm64:`CMN\sR[0-9]+<<3,\sR[0-9]+` c8 := e+(f<<3) < 0 // arm64:`TST\sR[0-9],\sR[0-9]+` - c9 := e&17 < 0 + c9 := e&(-19) < 0 if c0 { return 1 } else if c1 { |
