Commit eb9137df by Kyrylo Tkachov Committed by Kyrylo Tkachov

[ARM] Use %wd format for lane printing in bounds_check

	* config/arm/arm.c (bounds_check): Use %wd print format
	for HOST_WIDE_INT arguments.

From-SVN: r227002
parent a79683d5
2015-08-19 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
* config/arm/arm.c (bounds_check): Use %wd print format
for HOST_WIDE_INT arguments.
2015-08-18 Trevor Saunders <tbsaunde@tbsaunde.org> 2015-08-18 Trevor Saunders <tbsaunde@tbsaunde.org>
* bb-reorder.c, cfgloop.h, collect2.c, combine.c, dse.c, * bb-reorder.c, cfgloop.h, collect2.c, combine.c, dse.c,
......
...@@ -12809,10 +12809,10 @@ bounds_check (rtx operand, HOST_WIDE_INT low, HOST_WIDE_INT high, ...@@ -12809,10 +12809,10 @@ bounds_check (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 ("%K%s %lld out of range %lld - %lld", error ("%K%s %wd out of range %wd - %wd",
exp, desc, lane, low, high - 1); exp, desc, lane, low, high - 1);
else else
error ("%s %lld out of range %lld - %lld", desc, lane, low, high - 1); error ("%s %wd out of range %wd - %wd", desc, 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