[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
Thu Sep 14 20:19:42 PDT 2023
Joy12138 updated this revision to Diff 556823.
Joy12138 added a comment.
check for __i386__ only
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.556823.patch
Type: text/x-patch
Size: 635 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20230915/2a1e0f4a/attachment.bin>
More information about the libcxx-commits
mailing list