aboutsummaryrefslogtreecommitdiff
path: root/pl/math/log1p_2u.c
diff options
context:
space:
mode:
Diffstat (limited to 'pl/math/log1p_2u.c')
-rw-r--r--pl/math/log1p_2u.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/pl/math/log1p_2u.c b/pl/math/log1p_2u.c
index ade5d87..20b4811 100644
--- a/pl/math/log1p_2u.c
+++ b/pl/math/log1p_2u.c
@@ -4,8 +4,9 @@
* SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception
*/
-#include "math_config.h"
#include "estrin.h"
+#include "math_config.h"
+#include "pl_sig.h"
#define Ln2Hi 0x1.62e42fefa3800p-1
#define Ln2Lo 0x1.ef35793c76730p-45
@@ -120,3 +121,5 @@ log1p (double x)
double y = fma (Ln2Lo, kd, cm);
return y + fma (Ln2Hi, kd, p);
}
+
+PL_SIG (S, D, 1, log1p, -0.9, 10.0)