Skip to content

Commit 7801662

Browse files
committed
Remove unused 32 byte AVX2 assembly
1 parent 3b1c544 commit 7801662

File tree

3 files changed

+4
-9124
lines changed

3 files changed

+4
-9124
lines changed

_gen/gen.go

+4
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,10 @@ func VPXOR3way(a, b, dst reg.VecVirtual) {
266266
}
267267

268268
func genMulAvx2(name string, inputs int, outputs int, xor bool) {
269+
if outputs < 4 {
270+
// Covered by 64-byte version.
271+
return
272+
}
269273
const perLoopBits = 5
270274
const perLoop = 1 << perLoopBits
271275

0 commit comments

Comments
 (0)