aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1996-11-15 14:14:15 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1996-11-15 14:14:15 -0500
commit734de8c84ef61af6906de18550ba126fa078a977 (patch)
tree8ce8f575556f9e29aae3dd73b880b844d2fbd2cb /gcc
parent21e3a81b9381daa3d068c47b481291474f6e42ea (diff)
downloadgcc-734de8c84ef61af6906de18550ba126fa078a977.zip
gcc-734de8c84ef61af6906de18550ba126fa078a977.tar.gz
gcc-734de8c84ef61af6906de18550ba126fa078a977.tar.bz2
(print_rtx, case 'w'): Use HOST_WIDE_INT_PRINT_DEC.
From-SVN: r13175
Diffstat (limited to 'gcc')
-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 93153d4..7c26819 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':