[libc-commits] [libc] [libc][obvious] disable fabsf128 on aarch64 (PR #78511)

via libc-commits libc-commits at lists.llvm.org
Wed Jan 17 14:19:20 PST 2024


https://github.com/michaelrj-google created https://github.com/llvm/llvm-project/pull/78511

It's not working on the buildbot, so I've disabled it until we fix it.



>From a5ab7f38d8cfc79b12c5eae040787d360483f65b Mon Sep 17 00:00:00 2001
From: Michael Jones <michaelrj at google.com>
Date: Wed, 17 Jan 2024 14:17:57 -0800
Subject: [PATCH] [libc][obvious] disable fabsf128 on aarch64

It's not working on the buildbot, so I've disabled it until we fix it.
---
 libc/config/linux/aarch64/entrypoints.txt | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/libc/config/linux/aarch64/entrypoints.txt b/libc/config/linux/aarch64/entrypoints.txt
index ab54633006979b..625fa6bffe63c6 100644
--- a/libc/config/linux/aarch64/entrypoints.txt
+++ b/libc/config/linux/aarch64/entrypoints.txt
@@ -357,7 +357,8 @@ set(TARGET_LIBM_ENTRYPOINTS
 if(LIBC_COMPILER_HAS_FLOAT128)
   list(APPEND TARGET_LIBM_ENTRYPOINTS
     # math.h C23 _Float128 entrypoints
-    libc.src.math.fabsf128
+    # Temporarily disabled since float128 isn't working on the aarch64 buildbot
+    # libc.src.math.fabsf128
   )
 endif()
 



More information about the libc-commits mailing list