summaryrefslogtreecommitdiff
path: root/gcc/print-rtl.c
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@adacore.com>2013-11-22 11:22:51 +0000
committerEric Botcazou <ebotcazou@gcc.gnu.org>2013-11-22 11:22:51 +0000
commit9ccf7d920e6b63ec830b499102bdc6f8ee38d1b3 (patch)
tree77232aea08622d326c2fa6174c45292b585f4e3d /gcc/print-rtl.c
parent72fd36d76a9ee9f8131b970a72c161e1e1cc25d0 (diff)
downloadgcc-9ccf7d920e6b63ec830b499102bdc6f8ee38d1b3.tar.gz
* print-rtl.c (print_rtx) <case MEM>: Output a space if no MEM_EXPR.
From-SVN: r205251
Diffstat (limited to 'gcc/print-rtl.c')
-rw-r--r--gcc/print-rtl.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/print-rtl.c b/gcc/print-rtl.c
index 833bee92f71..a15ab5e972c 100644
--- a/gcc/print-rtl.c
+++ b/gcc/print-rtl.c
@@ -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));