[libc-commits] [libc] [libc][stdfix] Re-enable fixed point abs entry points. (PR #81995)

via libc-commits libc-commits at lists.llvm.org
Fri Feb 16 06:48:37 PST 2024


https://github.com/lntue created https://github.com/llvm/llvm-project/pull/81995

#80757 has been merged.

>From f4237c343ba44624a8c80c99291fb2404d6b7bc3 Mon Sep 17 00:00:00 2001
From: Tue Ly <lntue.h at gmail.com>
Date: Fri, 16 Feb 2024 14:47:06 +0000
Subject: [PATCH] [libc][stdfix] Re-enable fixed point abs entry points.

---
 libc/config/linux/x86_64/entrypoints.txt | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/libc/config/linux/x86_64/entrypoints.txt b/libc/config/linux/x86_64/entrypoints.txt
index 802c42b967cfaf..69912d3b32f030 100644
--- a/libc/config/linux/x86_64/entrypoints.txt
+++ b/libc/config/linux/x86_64/entrypoints.txt
@@ -445,13 +445,12 @@ endif()
 if(LIBC_COMPILER_HAS_FIXED_POINT)
   list(APPEND TARGET_LIBM_ENTRYPOINTS
     # stdfix.h _Fract and _Accum entrypoints
-    # Re-enable the entry points once #80757 is merged.
-    # libc.src.stdfix.abshk
-    # libc.src.stdfix.abshr
-    # libc.src.stdfix.absk
-    # libc.src.stdfix.absr
-    # libc.src.stdfix.abslk
-    # libc.src.stdfix.abslr
+    libc.src.stdfix.abshk
+    libc.src.stdfix.abshr
+    libc.src.stdfix.absk
+    libc.src.stdfix.absr
+    libc.src.stdfix.abslk
+    libc.src.stdfix.abslr
   )
 endif()
 



More information about the libc-commits mailing list