aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Henderson <rth@cygnus.com>2000-06-14 14:04:42 -0700
committerRichard Henderson <rth@gcc.gnu.org>2000-06-14 14:04:42 -0700
commitf6a0cc964a749ad25542911497f66a8b9b27a4ac (patch)
tree88434532a2904f9fef676bf599045b605e042218
parent2eba1afa1b082cf808ec074ee2d3de8bfeb508b0 (diff)
downloadgcc-f6a0cc964a749ad25542911497f66a8b9b27a4ac.zip
gcc-f6a0cc964a749ad25542911497f66a8b9b27a4ac.tar.gz
gcc-f6a0cc964a749ad25542911497f66a8b9b27a4ac.tar.bz2
* print-rtl.c (print_rtx): Emit space before mem alias set.
From-SVN: r34556
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/print-rtl.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 56b0ef6..d639f36 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2000-06-14 Richard Henderson <rth@cygnus.com>
+
+ * print-rtl.c (print_rtx): Emit space before mem alias set.
+
2000-06-14 David Edelsohn <edelsohn@gnu.org>
* rs6000.c (expand_block_move): Fix typo in earlier change.
diff --git a/gcc/print-rtl.c b/gcc/print-rtl.c
index 7f458fb..16a64db 100644
--- a/gcc/print-rtl.c
+++ b/gcc/print-rtl.c
@@ -398,6 +398,7 @@ print_rtx (in_rtx)
switch (GET_CODE (in_rtx))
{
case MEM:
+ fputc (' ', outfile);
fprintf (outfile, HOST_WIDE_INT_PRINT_DEC, MEM_ALIAS_SET (in_rtx));
break;