We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46f74fb commit 648f5e4Copy full SHA for 648f5e4
example/float-minmax-pass.rs
@@ -22,7 +22,7 @@ fn main() {
22
23
#[cfg(not(any(target_arch = "mips", target_arch = "mips64")))]
24
let nan = f32::NAN;
25
- // MIPS hardware treats f32::NAN as SNAN. Clear the signaling bit.
+ // MIPS hardware except MIPS R6 treats f32::NAN as SNAN. Clear the signaling bit.
26
// See https://github.com/rust-lang/rust/issues/52746.
27
#[cfg(any(target_arch = "mips", target_arch = "mips64"))]
28
let nan = f32::from_bits(f32::NAN.to_bits() - 1);
0 commit comments