From 3404b02b24d452ce3c1bdb80a6cb5c607c7c5c34 Mon Sep 17 00:00:00 2001 From: Louis Dionne Date: Mon, 17 Apr 2023 11:40:51 +0100 Subject: [PATCH] [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. --- .../language.support/cmp/cmp.alg/strong_order_long_double.verify.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 1a9289c..fd16afe 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 different 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{{.*}} -- 2.7.4