Skip to content

Commit 61e0382

Browse files
committed
Fix simd build on 32bit x86
1 parent b79a43c commit 61e0382

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/avx2/fdct.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*/
99

1010
#[cfg(target_arch = "x86")]
11-
use core::arch::x64::{
11+
use core::arch::x86::{
1212
__m256i, _mm256_add_epi16, _mm256_add_epi32, _mm256_loadu_si256, _mm256_madd_epi16,
1313
_mm256_packs_epi32, _mm256_permute2x128_si256, _mm256_permute4x64_epi64, _mm256_set_epi16,
1414
_mm256_set_epi32, _mm256_sign_epi16, _mm256_slli_epi16, _mm256_srai_epi16, _mm256_srai_epi32,

0 commit comments

Comments
 (0)