Skip to content

Commit 8a2dd77

Browse files
committed
[libc][math] Fix issignaling macro usage in the implementation.
1 parent a89e016 commit 8a2dd77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libc/src/math/generic/issignalingl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
namespace LIBC_NAMESPACE_DECL {
1515

1616
LLVM_LIBC_FUNCTION(int, issignalingl, (long double x)) {
17-
return fputil::issignaling(x);
17+
return fputil::issignaling_impl(x);
1818
}
1919

2020
} // namespace LIBC_NAMESPACE_DECL

0 commit comments

Comments
 (0)