Sha256: 304bc839b15ea3d84e68d2af9f40524ec120d30a36a667b22fcb98a6c258f4c7

Contents?: true

Size: 772 Bytes

Versions: 11

Compression:

Stored size: 772 Bytes

Contents

#[cfg_attr(all(test, assert_no_panic), no_panic::no_panic)]
pub fn fminf(x: f32, y: f32) -> f32 {
    // IEEE754 says: minNum(x, y) is the canonicalized number x if x < y, y if y < x, the
    // canonicalized number if one operand is a number and the other a quiet NaN. Otherwise it
    // is either x or y, canonicalized (this means results might differ among implementations).
    // When either x or y is a signalingNaN, then the result is according to 6.2.
    //
    // Since we do not support sNaN in Rust yet, we do not need to handle them.
    // FIXME(nagisa): due to https://bugs.llvm.org/show_bug.cgi?id=33303 we canonicalize by
    // multiplying by 1.0. Should switch to the `canonicalize` when it works.
    (if y.is_nan() || x < y { x } else { y }) * 1.0
}

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
wasmtime-29.0.0 ./ext/cargo-vendor/libm-0.2.11/src/math/fminf.rs
wasmtime-28.0.0 ./ext/cargo-vendor/libm-0.2.11/src/math/fminf.rs
wasmtime-27.0.0 ./ext/cargo-vendor/libm-0.2.11/src/math/fminf.rs
wasmtime-26.0.0 ./ext/cargo-vendor/libm-0.2.8/src/math/fminf.rs
wasmtime-25.0.2 ./ext/cargo-vendor/libm-0.2.8/src/math/fminf.rs
wasmtime-25.0.1 ./ext/cargo-vendor/libm-0.2.8/src/math/fminf.rs
wasmtime-25.0.0 ./ext/cargo-vendor/libm-0.2.8/src/math/fminf.rs
wasmtime-24.0.0 ./ext/cargo-vendor/libm-0.2.8/src/math/fminf.rs
wasmtime-23.0.2 ./ext/cargo-vendor/libm-0.2.8/src/math/fminf.rs
wasmtime-22.0.0 ./ext/cargo-vendor/libm-0.2.8/src/math/fminf.rs
wasmtime-21.0.1 ./ext/cargo-vendor/libm-0.2.8/src/math/fminf.rs