[libc-commits] [PATCH] D106391: [libc] Append math functions to Window's entrypoints
Hedin GarcĂa via Phabricator via libc-commits
libc-commits at lists.llvm.org
Wed Jul 21 06:22:24 PDT 2021
This revision was automatically updated to reflect the committed changes.
Closed by commit rGf49f2e2d1f8d: [libc] Append math functions to Window's entrypoints (authored by hedingarcia).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D106391/new/
https://reviews.llvm.org/D106391
Files:
libc/config/windows/entrypoints.txt
Index: libc/config/windows/entrypoints.txt
===================================================================
--- libc/config/windows/entrypoints.txt
+++ libc/config/windows/entrypoints.txt
@@ -39,6 +39,36 @@
libc.src.string.strtok
libc.src.string.strtok_r
)
+
+set(TARGET_LIBM_ENTRYPOINTS
+ # math.h entrypoints
+ libc.src.math.copysign
+ libc.src.math.copysignf
+ libc.src.math.copysignl
+ libc.src.math.fdimf
+ libc.src.math.fdim
+ libc.src.math.fdiml
+ libc.src.math.fmin
+ libc.src.math.fminf
+ libc.src.math.fminl
+ libc.src.math.fmax
+ libc.src.math.fmaxf
+ libc.src.math.fmaxl
+ libc.src.math.ilogb
+ libc.src.math.ilogbf
+ libc.src.math.ilogbl
+ libc.src.math.ldexp
+ libc.src.math.ldexpf
+ libc.src.math.ldexpl
+ libc.src.math.logb
+ libc.src.math.logbf
+ libc.src.math.logbl
+ libc.src.math.modf
+ libc.src.math.modff
+ libc.src.math.modfl
+)
+
set(TARGET_LLVMLIBC_ENTRYPOINTS
${TARGET_LIBC_ENTRYPOINTS}
+ ${TARGET_LIBM_ENTRYPOINTS}
)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D106391.360415.patch
Type: text/x-patch
Size: 1039 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libc-commits/attachments/20210721/052b1a9b/attachment.bin>
More information about the libc-commits
mailing list