aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYvan Roux <yvan.roux@linaro.org>2015-10-08 18:47:22 +0200
committerLinaro Code Review <review@review.linaro.org>2015-10-10 13:01:22 +0000
commit922c0f1b82c04de32bdb470260212ba39df10e32 (patch)
tree502395e22cf0e864fc9df4ac5f9107376720225f
parent2b4b1dba457ab72518cceb3a160744c650d03e2b (diff)
gcc/
Backport from trunk r224476. 2015-06-14 Shiva Chen <shiva0217@gmail.com> * aarch64.c (aarch64_simd_lane_bounds): Change %ld to %wd for HOST_WIDE_INT parameter. Change-Id: Ifdb83aac507935f8c746483d54297742e332cb40
-rw-r--r--gcc/config/aarch64/aarch64.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/aarch64/aarch64.c b/gcc/config/aarch64/aarch64.c
index ad56ecabd0f..55c08b5c93f 100644
--- a/gcc/config/aarch64/aarch64.c
+++ b/gcc/config/aarch64/aarch64.c
@@ -8918,9 +8918,9 @@ aarch64_simd_lane_bounds (rtx operand, HOST_WIDE_INT low, HOST_WIDE_INT high,
if (lane < low || lane >= high)
{
if (exp)
- error ("%Klane %ld out of range %ld - %ld", exp, lane, low, high - 1);
+ error ("%Klane %wd out of range %wd - %wd", exp, lane, low, high - 1);
else
- error ("lane %ld out of range %ld - %ld", lane, low, high - 1);
+ error ("lane %wd out of range %wd - %wd", lane, low, high - 1);
}
}