aboutsummaryrefslogtreecommitdiff
path: root/test/codegen
diff options
context:
space:
mode:
Diffstat (limited to 'test/codegen')
-rw-r--r--test/codegen/bits.go12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/codegen/bits.go b/test/codegen/bits.go
index 2bd92dd51b..8117a62307 100644
--- a/test/codegen/bits.go
+++ b/test/codegen/bits.go
@@ -270,18 +270,6 @@ func bitOpOnMem(a []uint32, b, c, d uint32) {
a[1] |= 220
// amd64:`XORL\s[$]240,\s8\([A-Z][A-Z0-9]+\)`
a[2] ^= 240
- // amd64:`BTRL\s[$]15,\s12\([A-Z][A-Z0-9]+\)`,-`ANDL`
- a[3] &= 0xffff7fff
- // amd64:`BTSL\s[$]14,\s16\([A-Z][A-Z0-9]+\)`,-`ORL`
- a[4] |= 0x4000
- // amd64:`BTCL\s[$]13,\s20\([A-Z][A-Z0-9]+\)`,-`XORL`
- a[5] ^= 0x2000
- // amd64:`BTRL\s[A-Z][A-Z0-9]+,\s24\([A-Z][A-Z0-9]+\)`
- a[6] &^= 1 << (b & 31)
- // amd64:`BTSL\s[A-Z][A-Z0-9]+,\s28\([A-Z][A-Z0-9]+\)`
- a[7] |= 1 << (c & 31)
- // amd64:`BTCL\s[A-Z][A-Z0-9]+,\s32\([A-Z][A-Z0-9]+\)`
- a[8] ^= 1 << (d & 31)
}
func bitcheckMostNegative(b uint8) bool {