fix compilation error when targeting AVX1-only

This commit is contained in:
dzaima 2023-10-07 13:22:10 +03:00
parent c981889bf0
commit 9c68e67544

View File

@ -105,9 +105,9 @@ fn squeeze{vw, X, CHR, B}(x0:*void, len:ux) : u32 = {
else pair{ints}
}
tup{intp, wdn}
} else if (tuplen{ints}==1 and hasarch{'X86_64'} and ~hasarch{'AVX'}) {
} else if (tuplen{ints}==1 and hasarch{'X86_64'} and ~hasarch{'AVX2'}) {
tup{tupsel{0, ints}, wdn}
}
} else assert{0}
}
}