about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--crates/core_simd/src/swizzle.rs6
1 files changed, 2 insertions, 4 deletions
diff --git a/crates/core_simd/src/swizzle.rs b/crates/core_simd/src/swizzle.rs
index 048945ddffa..5ba9f3dec59 100644
--- a/crates/core_simd/src/swizzle.rs
+++ b/crates/core_simd/src/swizzle.rs
@@ -36,8 +36,7 @@ macro_rules! simd_shuffle {
         $vector:expr, $index:expr $(,)?
     } => {
         {
-            // FIXME this won't work when we are in `core`!
-            use $crate::Swizzle;
+            use $crate::simd::Swizzle;
             struct Shuffle;
             impl Swizzle<{$index.len()}, {$index.len()}> for Shuffle {
                 const INDEX: [usize; {$index.len()}] = $index;
@@ -49,8 +48,7 @@ macro_rules! simd_shuffle {
         $first:expr, $second:expr, $index:expr $(,)?
     } => {
         {
-            // FIXME this won't work when we are in `core`!
-            use $crate::{Which, Swizzle2};
+            use $crate::simd::{Which, Swizzle2};
             struct Shuffle;
             impl Swizzle2<{$index.len()}, {$index.len()}> for Shuffle {
                 const INDEX: [Which; {$index.len()}] = $index;