Skip to content

Commit

Permalink
Fix incorrect documentation for _mm_loadu_si64 function
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
BLANKatGITHUB authored Nov 16, 2024
1 parent f3f4e1e commit a61e8d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/core_arch/src/x86/sse2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
///
Expand Down

0 comments on commit a61e8d8

Please sign in to comment.