Commit f6a0cc96 by Richard Henderson Committed by Richard Henderson

* print-rtl.c (print_rtx): Emit space before mem alias set.

From-SVN: r34556
parent 2eba1afa
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.
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment