]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* print-rtl.c (print_rtx) <case MEM>: Output a space if no MEM_EXPR.
authorEric Botcazou <ebotcazou@adacore.com>
Fri, 22 Nov 2013 11:22:51 +0000 (11:22 +0000)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Fri, 22 Nov 2013 11:22:51 +0000 (11:22 +0000)
From-SVN: r205251

gcc/ChangeLog
gcc/print-rtl.c

index b122c3f52c9dd16c9f035ca5dd5013b6c2945570..ed352021220eddb90a19a0076be9f292df8a220a 100644 (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.
index 833bee92f711742dcfff5ecbe789ef53c9c4b191..a15ab5e972cbbe1c17adb84158aa195ed76ec754 100644 (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));