Skip to content

Commit eb0041d

Browse files
committed
Format
1 parent 0368a8c commit eb0041d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

crates/core_simd/src/swizzle_dyn.rs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,12 @@ where
1818
#![allow(unused_imports, unused_unsafe)]
1919
#[cfg(all(target_arch = "aarch64", target_endian = "little"))]
2020
use core::arch::aarch64::{uint8x8_t, vqtbl1q_u8, vtbl1_u8};
21-
#[cfg(all(target_arch = "arm", target_feature = "v7", target_feature = "neon", target_endian = "little"))]
21+
#[cfg(all(
22+
target_arch = "arm",
23+
target_feature = "v7",
24+
target_feature = "neon",
25+
target_endian = "little"
26+
))]
2227
use core::arch::arm::{uint8x8_t, vtbl1_u8};
2328
#[cfg(target_arch = "wasm32")]
2429
use core::arch::wasm32 as wasm;

0 commit comments

Comments
 (0)