[compiler-rt] [builtins] Support building the 128-bit float functions on i386 (PR #122658)

Phoebe Wang via llvm-commits llvm-commits at lists.llvm.org
Sun Jan 12 20:31:16 PST 2025


================
@@ -12,7 +12,7 @@
 #define QUAD_PRECISION
 #include "fp_lib.h"
 
-#if defined(CRT_HAS_TF_MODE) && __LDBL_MANT_DIG__ == 64 && defined(__x86_64__)
+#if defined(CRT_HAS_TF_MODE) && __LDBL_MANT_DIG__ == 64 && (defined(__x86_64__) || defined(__i386__))
----------------
phoebewang wrote:

Enable `__i386__` in extendxftf2_test.c

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


More information about the llvm-commits mailing list