[libc-commits] [libc] [libc][math] Fix issignaling macro usage in the implementation. (PR #112235)
via libc-commits
libc-commits at lists.llvm.org
Mon Oct 14 10:02:50 PDT 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-libc
Author: None (lntue)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/112235.diff
1 Files Affected:
- (modified) libc/src/math/generic/issignalingl.cpp (+1-1)
``````````diff
diff --git a/libc/src/math/generic/issignalingl.cpp b/libc/src/math/generic/issignalingl.cpp
index a3959bcae23575..b993c5559461e0 100644
--- a/libc/src/math/generic/issignalingl.cpp
+++ b/libc/src/math/generic/issignalingl.cpp
@@ -14,7 +14,7 @@
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(int, issignalingl, (long double x)) {
- return fputil::issignaling(x);
+ return fputil::issignaling_impl(x);
}
} // namespace LIBC_NAMESPACE_DECL
``````````
</details>
https://github.com/llvm/llvm-project/pull/112235
More information about the libc-commits
mailing list