about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--crates/core_simd/src/masks/full_masks.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/crates/core_simd/src/masks/full_masks.rs b/crates/core_simd/src/masks/full_masks.rs
index 7ed844de625..adf0fcbeae2 100644
--- a/crates/core_simd/src/masks/full_masks.rs
+++ b/crates/core_simd/src/masks/full_masks.rs
@@ -153,9 +153,6 @@ where
         assert_eq!(<super::Mask<T, LANES> as ToBitMaskArray>::BYTES, N);
 
         // Safety: N is the correct bitmask size
-        //
-        // The transmute below allows this function to be marked safe, since it will prevent
-        // monomorphization errors in the case of an incorrect size.
         unsafe {
             // Compute the bitmask
             let bitmask: [u8; <super::Mask<T, LANES> as ToBitMaskArray>::BYTES] =
@@ -186,9 +183,6 @@ where
         assert_eq!(<super::Mask<T, LANES> as ToBitMaskArray>::BYTES, N);
 
         // Safety: N is the correct bitmask size
-        //
-        // The transmute below allows this function to be marked safe, since it will prevent
-        // monomorphization errors in the case of an incorrect size.
         unsafe {
             // LLVM assumes bit order should match endianness
             if cfg!(target_endian = "big") {