[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 00:23:37 PDT 2022


mstorsjo created this revision.
mstorsjo added a reviewer: Mordante.
Herald added a project: All.
mstorsjo requested review of this revision.
Herald added a project: libc++.
Herald added a reviewer: libc++.

Repository:
  rG LLVM Github Monorepo

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.427227.patch
Type: text/x-patch
Size: 1053 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20220505/59495b2c/attachment.bin>


More information about the libcxx-commits mailing list