aboutsummaryrefslogtreecommitdiff
path: root/test/codegen
diff options
context:
space:
mode:
Diffstat (limited to 'test/codegen')
-rw-r--r--test/codegen/bits.go2
-rw-r--r--test/codegen/memcombine.go1
-rw-r--r--test/codegen/noextend.go1
3 files changed, 0 insertions, 4 deletions
diff --git a/test/codegen/bits.go b/test/codegen/bits.go
index 67daf12d62..4b6c8b94b8 100644
--- a/test/codegen/bits.go
+++ b/test/codegen/bits.go
@@ -382,7 +382,6 @@ func signextendAndMask8to64(a int8) (s, z uint64) {
// ppc64x: -"MOVB", "ANDCC\t[$]247,"
z = uint64(uint8(a)) & 0x3F7
return
-
}
// Verify zero-extended values are not sign-extended under a bit mask (#61297)
@@ -392,7 +391,6 @@ func zeroextendAndMask8to64(a int8, b int16) (x, y uint64) {
// ppc64x: -"MOVH\t", -"ANDCC", "MOVHZ"
y = uint64(b) & 0xFFFF
return
-
}
// Verify rotate and mask instructions, and further simplified instructions for small types
diff --git a/test/codegen/memcombine.go b/test/codegen/memcombine.go
index db5c81f905..6d6c33d947 100644
--- a/test/codegen/memcombine.go
+++ b/test/codegen/memcombine.go
@@ -348,7 +348,6 @@ func reassoc_load_uint32(b []byte) uint32 {
func extrashift_load_uint32(b []byte) uint32 {
// amd64:`MOVL\s\([A-Z]+\)`,`SHLL\s[$]2`,-`MOV[BW]`,-`OR`
return uint32(b[0])<<2 | uint32(b[1])<<10 | uint32(b[2])<<18 | uint32(b[3])<<26
-
}
func outoforder_load_uint32(b []byte) uint32 {
diff --git a/test/codegen/noextend.go b/test/codegen/noextend.go
index 98ad0ece89..193f75b092 100644
--- a/test/codegen/noextend.go
+++ b/test/codegen/noextend.go
@@ -277,7 +277,6 @@ func shouldSignEXT(x int) int64 {
ret += int64(int8(x & 0x1100000000000011))
return ret
-
}
func noIntermediateExtension(a, b, c uint32) uint32 {