Skip to content

Commit

Permalink
x86: remove unnecessary parens
Browse files Browse the repository at this point in the history
  • Loading branch information
KisaragiEffective authored and Amanieu committed Apr 12, 2023
1 parent fa1eb71 commit cf3deea
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 @@ -1374,7 +1374,7 @@ pub unsafe fn _mm_sfence() {
#[stable(feature = "simd_x86", since = "1.27.0")]
pub unsafe fn _mm_getcsr() -> u32 {
let mut result = 0_i32;
stmxcsr((&mut result) as *mut _ as *mut i8);
stmxcsr(&mut result as *mut _ as *mut i8);
result as u32
}

Expand Down

0 comments on commit cf3deea

Please sign in to comment.