[libcxx-commits] [libcxx] 3404b02 - [libc++] Add annotation for arm64e in the strong_order test for long double
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Mon Apr 17 03:42:20 PDT 2023
Author: Louis Dionne
Date: 2023-04-17T11:42:08+01:00
New Revision: 3404b02b24d452ce3c1bdb80a6cb5c607c7c5c34
URL: https://github.com/llvm/llvm-project/commit/3404b02b24d452ce3c1bdb80a6cb5c607c7c5c34
DIFF: https://github.com/llvm/llvm-project/commit/3404b02b24d452ce3c1bdb80a6cb5c607c7c5c34.diff
LOG: [libc++] Add annotation for arm64e in the strong_order test for long double
As a fly-by, improve readability by giving a bit more space to some
comments.
Added:
Modified:
libcxx/test/std/language.support/cmp/cmp.alg/strong_order_long_double.verify.cpp
Removed:
################################################################################
diff --git a/libcxx/test/std/language.support/cmp/cmp.alg/strong_order_long_double.verify.cpp b/libcxx/test/std/language.support/cmp/cmp.alg/strong_order_long_double.verify.cpp
index 1a9289c7c966c..fd16afeefb033 100644
--- a/libcxx/test/std/language.support/cmp/cmp.alg/strong_order_long_double.verify.cpp
+++ b/libcxx/test/std/language.support/cmp/cmp.alg/strong_order_long_double.verify.cpp
@@ -10,13 +10,16 @@
// 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
diff erent sizes.
-// UNSUPPORTED: target={{arm64|armv(7|8)(l|m)?|powerpc|powerpc64}}-{{.+}}
+// UNSUPPORTED: target={{arm64|arm64e|armv(7|8)(l|m)?|powerpc|powerpc64}}-{{.+}}
+
// 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-{{.+}}
+
// Android's 32-bit x86 target has long double equal to regular double.
// UNSUPPORTED: target=i686-{{.+}}-android{{.*}}
More information about the libcxx-commits
mailing list