From a61e8d8321a867647cbb1d94017a2983bd74d42b Mon Sep 17 00:00:00 2001 From: Blanky <131886247+BLANKatGITHUB@users.noreply.github.com> Date: Sun, 17 Nov 2024 01:34:38 +0530 Subject: [PATCH] Fix incorrect documentation for _mm_loadu_si64 function The documentation incorrectly stated that the function loads 16 bits of integer data. This commit corrects the documentation to accurately reflect that the function loads 64 bits (8 bytes) of integer data from memory into a new vector. --- crates/core_arch/src/x86/sse2.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/core_arch/src/x86/sse2.rs b/crates/core_arch/src/x86/sse2.rs index c6273cfc13..217aa85ed8 100644 --- a/crates/core_arch/src/x86/sse2.rs +++ b/crates/core_arch/src/x86/sse2.rs @@ -2787,7 +2787,7 @@ pub unsafe fn _mm_loadu_si32(mem_addr: *const u8) -> __m128i { )) } -/// Loads unaligned 16-bits of integer data from memory into new vector. +/// Loads unaligned 64-bits of integer data from memory into new vector. /// /// `mem_addr` does not need to be aligned on any particular boundary. ///