[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
This commit is contained in:
Kyrylo Tkachov 2015-08-19 08:26:43 +00:00 committed by Kyrylo Tkachov
parent a79683d5f0
commit eb9137dfe3
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
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>
* bb-reorder.c, cfgloop.h, collect2.c, combine.c, dse.c,

View File

@ -12809,10 +12809,10 @@ bounds_check (rtx operand, HOST_WIDE_INT low, HOST_WIDE_INT high,
if (lane < low || lane >= high)
{
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);
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);
}
}