summaryrefslogtreecommitdiff
path: root/libc/src/math/generic/sinpif.cpp
AgeCommit message (Collapse)Author
2025-04-08[libc][math] Fix signaling NaN handling for math functions. (#133347)wldfngrs
Add tests for signaling NaNs, and fix function behavior for handling signaling NaN input. Fixes https://github.com/llvm/llvm-project/issues/124812
2024-07-12[libc] Migrate to using LIBC_NAMESPACE_DECL for namespace declaration (#98597)Petr Hosek
This is a part of #97655.
2024-07-12Revert "[libc] Migrate to using LIBC_NAMESPACE_DECL for namespace ↵Mehdi Amini
declaration" (#98593) Reverts llvm/llvm-project#98075 bots are broken
2024-07-11[libc] Migrate to using LIBC_NAMESPACE_DECL for namespace declaration (#98075)Petr Hosek
This is a part of #97655.
2024-07-06[libc][C23][math] Implement cospif function correctly rounded for all ↵Hendrik Hübner
rounding modes (#97464) I also fixed a comment in sinpif.cpp in the first commit. Should this be included in this PR? All tests were passed, including the exhaustive test. CC: @lntue
2024-07-01[libc][math][c23] Implemented sinpif function correctly rounded for all ↵Hendrik Hübner
rounding modes. (#97149) This implements the sinpif function. An exhaustive test shows it's correct for all rounding modes. Issue: #94895