diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-06-12 23:08:05 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-06-12 23:08:05 +0000 |
commit | 4a40e205b7bb644c4b18290554cd289a44b0d918 (patch) | |
tree | 78f8a30a4aeffbd2844a173d15fc441ae5bd9691 /gcc/print-rtl.c | |
parent | 687f350d762c5d5ee05e38b85af26d2f15921447 (diff) | |
download | gcc-4a40e205b7bb644c4b18290554cd289a44b0d918.tar.gz |
* print-rtl.c (print_rtx, case MEM): Use HOST_WIDE_INT_PRINT_DEC
to print the alias set.
* print-tree.c (print_node, DECL_* nodes and case 't'): Similarly.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34507 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/print-rtl.c')
-rw-r--r-- | gcc/print-rtl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/print-rtl.c b/gcc/print-rtl.c index ab19a16343c..7f458fb799c 100644 --- a/gcc/print-rtl.c +++ b/gcc/print-rtl.c @@ -398,7 +398,7 @@ print_rtx (in_rtx) switch (GET_CODE (in_rtx)) { case MEM: - fprintf (outfile, " %d", MEM_ALIAS_SET (in_rtx)); + fprintf (outfile, HOST_WIDE_INT_PRINT_DEC, MEM_ALIAS_SET (in_rtx)); break; #if HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT && MAX_LONG_DOUBLE_TYPE_SIZE == 64 |