Fix cast in test

This commit is contained in:
gnzlbg 2019-04-28 13:34:15 +02:00 committed by gnzlbg
parent d189e44450
commit d07709142a

View file

@ -3202,7 +3202,7 @@ mod tests {
#[simd_test(enable = "sse2")]
unsafe fn test_mm_clflush() {
let x = 0;
let x = 0_u8;
_mm_clflush(&x as *const _);
}