aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyrylo Tkachov <kyrylo.tkachov@arm.com>2021-03-30 14:07:50 +0100
committerChristophe Lyon <christophe.lyon@linaro.org>2021-05-07 14:16:29 +0000
commitbcc4f85667c88f9be098f2671b01831d4b8d9f7c (patch)
tree4363c33a8cdc59ae65aa6a86d172440cc72b636c
parent64b6b1d1bc796a7fea189a4c4b0e290540f51ae3 (diff)
downloadgcc-bcc4f85667c88f9be098f2671b01831d4b8d9f7c.zip
gcc-bcc4f85667c88f9be098f2671b01831d4b8d9f7c.tar.gz
gcc-bcc4f85667c88f9be098f2671b01831d4b8d9f7c.tar.bz2
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.
-rw-r--r--gcc/testsuite/gcc.target/aarch64/pr99808.c4
1 files 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);
}