summaryrefslogtreecommitdiff
path: root/gcc/print-rtl.c
diff options
context:
space:
mode:
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1996-11-15 19:14:15 +0000
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1996-11-15 19:14:15 +0000
commitc6946bfcc1ffce3788b50c6a860489c64e6925d4 (patch)
tree8ce8f575556f9e29aae3dd73b880b844d2fbd2cb /gcc/print-rtl.c
parente1e05abb58c90ce27ecddbbe73f6693441cda182 (diff)
downloadgcc-c6946bfcc1ffce3788b50c6a860489c64e6925d4.tar.gz
(print_rtx, case 'w'): Use HOST_WIDE_INT_PRINT_DEC.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@13175 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/print-rtl.c')
-rw-r--r--gcc/print-rtl.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/gcc/print-rtl.c b/gcc/print-rtl.c
index 93153d4b967..7c268197a74 100644
--- a/gcc/print-rtl.c
+++ b/gcc/print-rtl.c
@@ -166,13 +166,8 @@ print_rtx (in_rtx)
break;
case 'w':
- fprintf (outfile,
-#if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
- " %d",
-#else
- " %ld",
-#endif
- XWINT (in_rtx, i));
+ fprintf (outfile, " ");
+ fprintf (outfile, HOST_WIDE_INT_PRINT_DEC, XWINT (in_rtx, i));
break;
case 'i':