Commit cf0c27ef by Shiva Chen Committed by Marcus Shawcroft

[AArch64] Change %ld to %wd for HOST_WIDE_INT parameter.

From-SVN: r224476
parent 14c9cbc6
2015-06-14 Shiva Chen <shiva0217@gmail.com>
* aarch64.c (aarch64_simd_lane_bounds): Change %ld to %wd for
HOST_WIDE_INT parameter.
2015-06-14 Jan Hubicka <hubicka@ucw.cz> 2015-06-14 Jan Hubicka <hubicka@ucw.cz>
PR ipa/66181 PR ipa/66181
......
...@@ -8890,9 +8890,9 @@ aarch64_simd_lane_bounds (rtx operand, HOST_WIDE_INT low, HOST_WIDE_INT high, ...@@ -8890,9 +8890,9 @@ aarch64_simd_lane_bounds (rtx operand, HOST_WIDE_INT low, HOST_WIDE_INT high,
if (lane < low || lane >= high) if (lane < low || lane >= high)
{ {
if (exp) 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 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);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment