Skip to content

Commit

Permalink
fix portable simd on arm v7 neon
Browse files Browse the repository at this point in the history
  • Loading branch information
hkratz committed Oct 15, 2024
1 parent dda41cf commit 3e04cfc
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/implementation/portable/simd128.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,6 @@ impl SimdU8Value {
v0, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15,
)
.0;
#[cfg(all(target_arch = "arm", target_feature = "neon"))]
let res = unsafe { Self::arm_neon_swizzle_dyn(src, idx) };
#[cfg(not(all(target_arch = "arm", target_feature = "neon")))]
let res = src.swizzle_dyn(idx);
Self::from(res)
}
Expand Down

0 comments on commit 3e04cfc

Please sign in to comment.