Skip to content

Commit

Permalink
Fix _mm_storeu_pd test (#1015)
Browse files Browse the repository at this point in the history
  • Loading branch information
Amanieu authored Feb 25, 2021
1 parent 216009f commit ecc7a73
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 @@ -4724,7 +4724,7 @@ mod tests {
assert_eq!(vals[1], 2.0);
}

#[simd_test(enable = "sse")]
#[simd_test(enable = "sse2")]
unsafe fn test_mm_storeu_pd() {
let mut mem = Memory { data: [0.0f64; 4] };
let vals = &mut mem.data;
Expand Down

0 comments on commit ecc7a73

Please sign in to comment.