Skip to content

Commit

Permalink
Correct swizzle_dyn cfg for armv7 neon
Browse files Browse the repository at this point in the history
  • Loading branch information
workingjubilee committed May 12, 2023
1 parent de858e7 commit e4cecc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/portable-simd/crates/core_simd/src/swizzle_dyn.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ where
#![allow(unused_imports, unused_unsafe)]
#[cfg(target_arch = "aarch64")]
use core::arch::aarch64::{uint8x8_t, vqtbl1q_u8, vtbl1_u8};
#[cfg(all(target_arch = "arm", target_feature = "v7"))]
#[cfg(all(target_arch = "arm", target_feature = "v7", target_feature = "neon"))]
use core::arch::arm::{uint8x8_t, vtbl1_u8};
#[cfg(target_arch = "wasm32")]
use core::arch::wasm32 as wasm;
Expand Down

0 comments on commit e4cecc1

Please sign in to comment.