diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c01005769f0a..cfaa317722b2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2008-05-11 Aaron W. LaFramboise + + * pretty-print.c (pp_integer_with_precision): Use + HOST_LONG_LONG_FORMAT. + 2008-05-10 Kenneth Zadeck * gcse.c (store_killed_in_insn): Negated call to RTL_CONST_CALL_P. diff --git a/gcc/pretty-print.c b/gcc/pretty-print.c index c4de15dc21a6..35dca7ca68cf 100644 --- a/gcc/pretty-print.c +++ b/gcc/pretty-print.c @@ -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: \