[libc-commits] [libc] 11eafdb - [libc][NFC] Add few more missing entrypoints to the entrypoint list.

Siva Chandra Reddy via libc-commits libc-commits at lists.llvm.org
Mon Jun 8 22:13:06 PDT 2020


Author: Siva Chandra Reddy
Date: 2020-06-08T22:08:42-07:00
New Revision: 11eafdb1d9c9eb07ed598dfa41beece7f1ad9926

URL: https://github.com/llvm/llvm-project/commit/11eafdb1d9c9eb07ed598dfa41beece7f1ad9926
DIFF: https://github.com/llvm/llvm-project/commit/11eafdb1d9c9eb07ed598dfa41beece7f1ad9926.diff

LOG: [libc][NFC] Add few more missing entrypoints to the entrypoint list.

They were likely missed while rebasing.

Added: 
    

Modified: 
    libc/config/linux/x86_64/entrypoints.txt

Removed: 
    


################################################################################
diff  --git a/libc/config/linux/x86_64/entrypoints.txt b/libc/config/linux/x86_64/entrypoints.txt
index d5ed7a2a187f..9e93ee5dfa33 100644
--- a/libc/config/linux/x86_64/entrypoints.txt
+++ b/libc/config/linux/x86_64/entrypoints.txt
@@ -22,6 +22,7 @@ set(LIBC_ENTRYPOINTS
     # string.h entrypoints
     libc.src.string.bzero
     libc.src.string.memcpy
+    libc.src.string.memset
     libc.src.string.strcpy
     libc.src.string.strcat
     libc.src.string.strlen
@@ -31,6 +32,7 @@ set(LIBC_ENTRYPOINTS
     libc.src.sys.mman.munmap
 
     # threads.h entrypoints
+    libc.src.threads.call_once
     libc.src.threads.mtx_init
     libc.src.threads.mtx_lock
     libc.src.threads.mtx_unlock
@@ -48,6 +50,8 @@ set(LIBM_ENTRYPOINTS
     libc.src.math.cosf
     libc.src.math.expf
     libc.src.math.exp2f
+    libc.src.math.fabs
+    libc.src.math.fabsf
     libc.src.math.floor
     libc.src.math.floorf
     libc.src.math.round


        


More information about the libc-commits mailing list