From bcc4f85667c88f9be098f2671b01831d4b8d9f7c Mon Sep 17 00:00:00 2001 From: Kyrylo Tkachov Date: Tue, 30 Mar 2021 14:07:50 +0100 Subject: aarch64: Fix gcc.target/aarch64/pr99808.c for ILP32 Fix test for -mabi=ilp32 gcc/testsuite/ChangeLog: PR target/99808 * gcc.target/aarch64/pr99808.c: Use ULL constant suffix. --- gcc/testsuite/gcc.target/aarch64/pr99808.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/testsuite/gcc.target/aarch64/pr99808.c b/gcc/testsuite/gcc.target/aarch64/pr99808.c index 4d7edab..713360f 100644 --- a/gcc/testsuite/gcc.target/aarch64/pr99808.c +++ b/gcc/testsuite/gcc.target/aarch64/pr99808.c @@ -8,7 +8,7 @@ float32x4_t foo (void) { - float64x2_t arg2 = vcombine_f64 ((float64x1_t) 0UL, (float64x1_t) 1UL); - return vcvt_high_f32_f64 ((float32x2_t) 1UL, arg2); + float64x2_t arg2 = vcombine_f64 ((float64x1_t) 0ULL, (float64x1_t) 1ULL); + return vcvt_high_f32_f64 ((float32x2_t) 1ULL, arg2); } -- cgit v1.1