From 03e26098b174abec1158a9ed9352a45a3176ef7b Mon Sep 17 00:00:00 2001 From: Arjun Shankar Date: Wed, 23 Sep 2020 16:11:57 +0200 Subject: benchtests: Run _Float128 tests only on architectures that support it __float128 is a non-standard name and is not available on some architectures (like aarch64 or s390x) even though they may support the standard _Float128 type. Other architectures (like armv7) don't support quad-precision floating-point operations at all. This commit replaces benchtests references to __float128 with _Float128 and runs the corresponding tests only on architectures that support it. --- benchtests/expf128-inputs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'benchtests/expf128-inputs') diff --git a/benchtests/expf128-inputs b/benchtests/expf128-inputs index 5b36f8672a..5dc0f4e49b 100644 --- a/benchtests/expf128-inputs +++ b/benchtests/expf128-inputs @@ -1,6 +1,6 @@ ## includes: math.h -## args: __float128 -## ret: __float128 +## args: _Float128 +## ret: _Float128 # Random inputs in [-10,10] ## name: workload-random.wrf 0x4.e6f9d6da10d9a422942a89cdfa1p+0L -- cgit 1.4.1