[libcxx-commits] [PATCH] D159514: [libcxx] <experimental/simd> excluded long double for 32-bits x86 temporarily
Yin Zhang via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Sun Sep 24 19:28:23 PDT 2023
This revision was automatically updated to reflect the committed changes.
Closed by commit rG81a3828dbd99: [libcxx] <experimental/simd> excluded long double for 32-bits x86 temporarily (authored by Joy12138).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D159514/new/
https://reviews.llvm.org/D159514
Files:
libcxx/test/std/experimental/simd/test_utils.h
Index: libcxx/test/std/experimental/simd/test_utils.h
===================================================================
--- libcxx/test/std/experimental/simd/test_utils.h
+++ libcxx/test/std/experimental/simd/test_utils.h
@@ -40,8 +40,8 @@
}
};
-// TODO: Support long double (12 bytes) for MinGW (DLL, i686)
-#ifdef __MINGW32__
+// TODO: Support long double (12 bytes) for 32-bits x86
+#ifdef __i386__
using arithmetic_no_bool_types = types::concatenate_t<types::integer_types, types::type_list<float, double>>;
#else
using arithmetic_no_bool_types = types::concatenate_t<types::integer_types, types::floating_point_types>;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D159514.557287.patch
Type: text/x-patch
Size: 635 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20230925/0e2a7eb7/attachment.bin>
More information about the libcxx-commits
mailing list