From 55eb99e9a9d840ba452b128be14d6529c2dde039 Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Mon, 17 Jun 2024 13:48:13 +0000 Subject: Implement C23 log10p1 C23 adds various function families originally defined in TS 18661-4. Add the log10p1 functions (log10(1+x): like log1p, but for base-10 logarithms). This is directly analogous to the log2p1 implementation (except that whereas log2p1 has a smaller underflow range than log1p, log10p1 has a larger underflow range). The test inputs are copied from those for log1p and log2p1, plus a few more inputs in that wider underflow range. Tested for x86_64 and x86, and with build-many-glibcs.py. --- sysdeps/powerpc/nofpu/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'sysdeps/powerpc') diff --git a/sysdeps/powerpc/nofpu/Makefile b/sysdeps/powerpc/nofpu/Makefile index 96657c9676..71ee2b67b8 100644 --- a/sysdeps/powerpc/nofpu/Makefile +++ b/sysdeps/powerpc/nofpu/Makefile @@ -54,5 +54,6 @@ CFLAGS-s_fmaximum_magl.c += -fno-builtin-fabsl CFLAGS-s_fmaximum_mag_numl.c += -fno-builtin-fabsl CFLAGS-s_fminimum_magl.c += -fno-builtin-fabsl CFLAGS-s_fminimum_mag_numl.c += -fno-builtin-fabsl +CFLAGS-s_log10p1l.c += -fno-builtin-fabsl CFLAGS-s_log2p1l.c += -fno-builtin-fabsl endif -- cgit 1.4.1