[libcxx-commits] [PATCH] D124992: [libcxx] [test] Extend the UNSUPPORTED lines in strong_order_long_double.verify.cpp for non-x86_64 Windows
Martin Storsjö via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Thu May 5 13:21:58 PDT 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rG9dfbccf052ba: [libcxx] [test] Extend the UNSUPPORTED lines in strong_order_long_double.verify. (authored by mstorsjo).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D124992/new/
https://reviews.llvm.org/D124992
Files:
libcxx/test/std/language.support/cmp/cmp.alg/strong_order_long_double.verify.cpp
Index: libcxx/test/std/language.support/cmp/cmp.alg/strong_order_long_double.verify.cpp
===================================================================
--- libcxx/test/std/language.support/cmp/cmp.alg/strong_order_long_double.verify.cpp
+++ libcxx/test/std/language.support/cmp/cmp.alg/strong_order_long_double.verify.cpp
@@ -11,7 +11,12 @@
// The following platforms have sizeof(long double) == sizeof(double), so this test doesn't apply to them.
// This test does apply to aarch64 where Arm's AAPCS64 is followed. There they are different sizes.
// UNSUPPORTED: target={{arm64|armv(7|8)(l|m)?|powerpc|powerpc64}}-{{.+}}
-// UNSUPPORTED: target=x86_64-pc-windows-{{.+}}
+// MSVC configurations have long double equal to regular double on all
+// architectures.
+// UNSUPPORTED: target={{.+}}-pc-windows-msvc
+// ARM/AArch64 MinGW also has got long double equal to regular double, just
+// like MSVC (thus match both MinGW and MSVC here, for those architectures).
+// UNSUPPORTED: target={{aarch64|armv7}}-{{.*}}-windows-{{.+}}
// <compare>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D124992.427426.patch
Type: text/x-patch
Size: 1053 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20220505/cf713120/attachment.bin>
More information about the libcxx-commits
mailing list