[libcxx-commits] [PATCH] D159509: [libcxx] <experimental/simd> Fix CI errors on 32-bits x86
Yin Zhang via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Sep 12 22:36:06 PDT 2023
Joy12138 updated this revision to Diff 556625.
Joy12138 added a comment.
Fix comment
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D159509/new/
https://reviews.llvm.org/D159509
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) on 32-bit x86
+#if defined(__i386__) || defined(__i686__)
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: D159509.556625.patch
Type: text/x-patch
Size: 660 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20230913/bbb3f29c/attachment.bin>
More information about the libcxx-commits
mailing list