* print-rtl.c (print_rtx): Emit space before mem alias set.
authorRichard Henderson <rth@cygnus.com>
Wed, 14 Jun 2000 21:04:42 +0000 (14:04 -0700)
committerRichard Henderson <rth@gcc.gnu.org>
Wed, 14 Jun 2000 21:04:42 +0000 (14:04 -0700)
From-SVN: r34556

gcc/ChangeLog
gcc/print-rtl.c

index 56b0ef6..d639f36 100644 (file)
@@ -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.
index 7f458fb..16a64db 100644 (file)
@@ -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;