diff options
| author | wooden-worm <93303706+wooden-worm@users.noreply.github.com> | 2024-06-23 22:58:30 -0700 |
|---|---|---|
| committer | wooden-worm <93303706+wooden-worm@users.noreply.github.com> | 2024-06-23 22:58:30 -0700 |
| commit | b17317663573d4ff7d881e3fa1d9403bbda19769 (patch) | |
| tree | 78283dc376e5962955a11cbf7573d5095ae522fd | |
| parent | 2937f6f2cca1a72966e8b75650c290405dc8e578 (diff) | |
| download | rust-b17317663573d4ff7d881e3fa1d9403bbda19769.tar.gz rust-b17317663573d4ff7d881e3fa1d9403bbda19769.zip | |
wasm64 build with target-feature=+simd128,+atomics
| -rw-r--r-- | crates/core_simd/src/swizzle_dyn.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/core_simd/src/swizzle_dyn.rs b/crates/core_simd/src/swizzle_dyn.rs index 8a1079042f0..3b6388d0f27 100644 --- a/crates/core_simd/src/swizzle_dyn.rs +++ b/crates/core_simd/src/swizzle_dyn.rs @@ -30,6 +30,8 @@ where use core::arch::arm::{uint8x8_t, vtbl1_u8}; #[cfg(target_arch = "wasm32")] use core::arch::wasm32 as wasm; + #[cfg(target_arch = "wasm64")] + use core::arch::wasm64 as wasm; #[cfg(target_arch = "x86")] use core::arch::x86; #[cfg(target_arch = "x86_64")] |
