Update zstd_lazy.c

use 8bit
This commit is contained in:
TrianglesPCT 2021-05-14 16:47:24 -06:00 committed by GitHub
parent 77d54eb3b3
commit 0b9f4bb0ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -934,7 +934,7 @@ static ZSTD_Vec256 ZSTD_Vec256_read(const void* const ptr) {
static ZSTD_Vec256 ZSTD_Vec256_set8(BYTE val) {
ZSTD_Vec256 v;
v.v = _mm256_set1_epi32(val);
v.v = _mm256_set1_epi8(val);
return v;
}