Coverage Report

Created: 2025-07-11 06:39

/rust/registry/src/index.crates.io-6f17d22bba15001f/libm-0.2.11/src/math/fenv.rs
Line
Count
Source (jump to first uncovered line)
1
// src: musl/src/fenv/fenv.c
2
/* Dummy functions for archs lacking fenv implementation */
3
4
pub(crate) const FE_UNDERFLOW: i32 = 0;
5
pub(crate) const FE_INEXACT: i32 = 0;
6
7
pub(crate) const FE_TONEAREST: i32 = 0;
8
9
#[inline]
10
0
pub(crate) fn feclearexcept(_mask: i32) -> i32 {
11
0
    0
12
0
}
13
14
#[inline]
15
0
pub(crate) fn feraiseexcept(_mask: i32) -> i32 {
16
0
    0
17
0
}
18
19
#[inline]
20
0
pub(crate) fn fetestexcept(_mask: i32) -> i32 {
21
0
    0
22
0
}
23
24
#[inline]
25
0
pub(crate) fn fegetround() -> i32 {
26
0
    FE_TONEAREST
27
0
}