Skip to content

Commit b415a61

Browse files
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.
1 parent dbb198e commit b415a61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/core_arch/src/x86/sse2.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2787,7 +2787,7 @@ pub unsafe fn _mm_loadu_si32(mem_addr: *const u8) -> __m128i {
27872787
))
27882788
}
27892789

2790-
/// Loads unaligned 16-bits of integer data from memory into new vector.
2790+
/// Loads unaligned 64-bits of integer data from memory into new vector.
27912791
///
27922792
/// `mem_addr` does not need to be aligned on any particular boundary.
27932793
///

0 commit comments

Comments
 (0)