diff options
author | Aaron W. LaFramboise <aaronavay62@aaronwl.com> | 2008-05-11 04:06:57 -0600 |
---|---|---|
committer | Aaron W. LaFramboise <aaronwl@gcc.gnu.org> | 2008-05-11 04:06:57 -0600 |
commit | 2a1577002473967e482fcdbdeaec17fb9043e8f4 (patch) | |
tree | 1f4d7e964cc7b18e62de35c8a2921afb6736654c | |
parent | e999ee52579e945ae500afa689c132c83c81e9c5 (diff) | |
download | gcc-2a1577002473967e482fcdbdeaec17fb9043e8f4.zip gcc-2a1577002473967e482fcdbdeaec17fb9043e8f4.tar.gz gcc-2a1577002473967e482fcdbdeaec17fb9043e8f4.tar.bz2 |
pretty-print.c (pp_integer_with_precision): Use HOST_LONG_LONG_FORMAT.
2008-05-11 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
* pretty-print.c (pp_integer_with_precision): Use
HOST_LONG_LONG_FORMAT.
From-SVN: r135171
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/pretty-print.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c010057..cfaa317 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. diff --git a/gcc/pretty-print.c b/gcc/pretty-print.c index c4de15d..35dca7c 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: \ |