* print-rtl.c (print_rtx) <case MEM>: Output a space if no MEM_EXPR.

From-SVN: r205251
This commit is contained in:
Eric Botcazou 2013-11-22 11:22:51 +00:00 committed by Eric Botcazou
parent 72fd36d76a
commit 9ccf7d920e
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2013-11-22 Eric Botcazou <ebotcazou@adacore.com>
* print-rtl.c (print_rtx) <case MEM>: Output a space if no MEM_EXPR.
2013-11-22 Richard Sandiford <rdsandiford@googlemail.com>
* config/m32c/cond.md (stzx_16): Use register_operand for operand 0.

View File

@ -585,6 +585,8 @@ print_rtx (const_rtx in_rtx)
if (MEM_EXPR (in_rtx))
print_mem_expr (outfile, MEM_EXPR (in_rtx));
else
fputc (' ', outfile);
if (MEM_OFFSET_KNOWN_P (in_rtx))
fprintf (outfile, "+" HOST_WIDE_INT_PRINT_DEC, MEM_OFFSET (in_rtx));