[ARM] Use %wd format for lane printing in bounds_check
authorKyrylo Tkachov <kyrylo.tkachov@arm.com>
Wed, 19 Aug 2015 08:26:43 +0000 (08:26 +0000)
committerKyrylo Tkachov <ktkachov@gcc.gnu.org>
Wed, 19 Aug 2015 08:26:43 +0000 (08:26 +0000)
* config/arm/arm.c (bounds_check): Use %wd print format
for HOST_WIDE_INT arguments.

From-SVN: r227002

gcc/ChangeLog
gcc/config/arm/arm.c

index 32421c5dd30275673930e8615f0dc190456092cf..62805bf6a82658e1eb63dbb5218cadafbc92561a 100644 (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,
index 57702cbc8deacc4c6f64d40563a79633fc324e7e..da77244f1865af242cbf0a279b7320088073ff65 100644 (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);
     }
 }