diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-06-14 21:04:42 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-06-14 21:04:42 +0000 |
commit | 0fa4c2115cbe76716697bbfa796aa38cbe93ff00 (patch) | |
tree | 88434532a2904f9fef676bf599045b605e042218 /gcc/print-rtl.c | |
parent | a019e19d1e443e13f75e665862f97be175448629 (diff) | |
download | gcc-0fa4c2115cbe76716697bbfa796aa38cbe93ff00.tar.gz |
* print-rtl.c (print_rtx): Emit space before mem alias set.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34556 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/print-rtl.c')
-rw-r--r-- | gcc/print-rtl.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/print-rtl.c b/gcc/print-rtl.c index 7f458fb799c..16a64db9e3b 100644 --- a/gcc/print-rtl.c +++ b/gcc/print-rtl.c @@ -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; |