diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-09-09 20:59:53 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-09-09 20:59:53 +0000 |
commit | a1355ed3a251d58312f27fea14989a47e7a0235e (patch) | |
tree | e1f410c78a5db56e25b1c3205fefb4a3733e0e77 /gcc/print-rtl.c | |
parent | 5d71b04672c3b81e2d7f32248078ea50ffd24e21 (diff) | |
download | gcc-a1355ed3a251d58312f27fea14989a47e7a0235e.tar.gz |
* print-rtl.c (print_rtx): For MEMs, print MEM_ALIAS_SET.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@22366 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/print-rtl.c')
-rw-r--r-- | gcc/print-rtl.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/print-rtl.c b/gcc/print-rtl.c index 0415308cd35..415a2cc8ad4 100644 --- a/gcc/print-rtl.c +++ b/gcc/print-rtl.c @@ -259,6 +259,9 @@ print_rtx (in_rtx) abort (); } + if (GET_CODE (in_rtx) == MEM) + fprintf (outfile, " %d", MEM_ALIAS_SET (in_rtx)); + #if HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT && LONG_DOUBLE_TYPE_SIZE == 64 if (GET_CODE (in_rtx) == CONST_DOUBLE && FLOAT_MODE_P (GET_MODE (in_rtx))) { |