From 102975376451e9c8622379ab80152d3b43b84b58 Mon Sep 17 00:00:00 2001 From: Folkert de Vries Date: Sat, 25 Oct 2025 23:57:17 +0200 Subject: [PATCH] remove a use of `core::intrinsics::size_of` use of the intrinsic, rather than the stable function, is probably an accident. --- crates/core_arch/src/x86/gfni.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/core_arch/src/x86/gfni.rs b/crates/core_arch/src/x86/gfni.rs index 74e8c53c28..8c4d097fee 100644 --- a/crates/core_arch/src/x86/gfni.rs +++ b/crates/core_arch/src/x86/gfni.rs @@ -745,7 +745,6 @@ mod tests { #![allow(overflowing_literals)] use core::hint::black_box; - use core::intrinsics::size_of; use stdarch_test::simd_test; use crate::core_arch::x86::*;