Skip to content

Commit

Permalink
Fix _mm_loadu_si64 test
Browse files Browse the repository at this point in the history
  • Loading branch information
pickfire committed Jul 11, 2020
1 parent 7e11d88 commit 0fd0996
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/core_arch/src/x86/sse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3674,7 +3674,7 @@ mod tests {

#[simd_test(enable = "sse2")]
unsafe fn test_mm_loadu_si64() {
let a = _mm_set_epi64x(5, 0);
let a = _mm_set_epi8(0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0);
let r = _mm_loadu_si64(&a as *const _ as *const _);
assert_eq_m128i(a, r);
}
Expand Down

0 comments on commit 0fd0996

Please sign in to comment.