[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:51 PST 2024


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-libc

Author: None (michaelrj-google)

<details>
<summary>Changes</summary>

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



---
Full diff: https://github.com/llvm/llvm-project/pull/78511.diff


1 Files Affected:

- (modified) libc/config/linux/aarch64/entrypoints.txt (+2-1) 


``````````diff
diff --git a/libc/config/linux/aarch64/entrypoints.txt b/libc/config/linux/aarch64/entrypoints.txt
index ab54633006979bc..625fa6bffe63c65 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()
 

``````````

</details>


https://github.com/llvm/llvm-project/pull/78511


More information about the libc-commits mailing list