From 2a1577002473967e482fcdbdeaec17fb9043e8f4 Mon Sep 17 00:00:00 2001 From: "Aaron W. LaFramboise" Date: Sun, 11 May 2008 04:06:57 -0600 Subject: [PATCH] pretty-print.c (pp_integer_with_precision): Use HOST_LONG_LONG_FORMAT. 2008-05-11 Aaron W. LaFramboise * pretty-print.c (pp_integer_with_precision): Use HOST_LONG_LONG_FORMAT. From-SVN: r135171 --- gcc/ChangeLog | 5 +++++ gcc/pretty-print.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c01005769f0..cfaa317722b 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 c4de15dc21a..35dca7ca68c 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: \ -- 2.30.2