Skip to content

Commit 701c607

Browse files
committed
Fix cast in test
1 parent f5691cc commit 701c607

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
@@ -3202,7 +3202,7 @@ mod tests {
32023202

32033203
#[simd_test(enable = "sse2")]
32043204
unsafe fn test_mm_clflush() {
3205-
let x = 0;
3205+
let x = 0_u8;
32063206
_mm_clflush(&x as *const _);
32073207
}
32083208

0 commit comments

Comments
 (0)