pretty-print.c (pp_integer_with_precision): Use HOST_LONG_LONG_FORMAT.
authorAaron W. LaFramboise <aaronavay62@aaronwl.com>
Sun, 11 May 2008 10:06:57 +0000 (04:06 -0600)
committerAaron W. LaFramboise <aaronwl@gcc.gnu.org>
Sun, 11 May 2008 10:06:57 +0000 (04:06 -0600)
2008-05-11  Aaron W. LaFramboise  <aaronavay62@aaronwl.com>

* pretty-print.c (pp_integer_with_precision): Use
HOST_LONG_LONG_FORMAT.

From-SVN: r135171

gcc/ChangeLog
gcc/pretty-print.c

index c01005769f0a361630b419304f97fa7d9c06b42d..cfaa317722b2ede7a2745a175c168bf365e7f97e 100644 (file)
@@ -1,3 +1,8 @@
+2008-05-11  Aaron W. LaFramboise  <aaronavay62@aaronwl.com>
+
+       * pretty-print.c (pp_integer_with_precision): Use
+       HOST_LONG_LONG_FORMAT.
+
 2008-05-10  Kenneth Zadeck  <zadeck@naturalbridge.com>
 
        * gcse.c (store_killed_in_insn): Negated call to RTL_CONST_CALL_P.
index c4de15dc21a63b646dfa0e0840aca9b372b44b95..35dca7ca68cfab40a2431e39c4a62537af365929 100644 (file)
@@ -50,7 +50,7 @@ along with GCC; see the file COPYING3.  If not see
         break;                                               \
                                                              \
       case 2:                                                \
-        pp_scalar (PP, "%ll" F, va_arg (ARG, long long T));  \
+        pp_scalar (PP, "%" HOST_LONG_LONG_FORMAT F, va_arg (ARG, long long T));  \
         break;                                               \
                                                              \
       default:                                               \