diff options
author | Bernd Schmidt <crux@pool.informatik.rwth-aachen.de> | 1998-09-09 20:59:53 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-09-09 14:59:53 -0600 |
commit | 5a0a1a6674f6973bb8c60fec6857f1f5c1ee472d (patch) | |
tree | e1f410c78a5db56e25b1c3205fefb4a3733e0e77 /gcc/print-rtl.c | |
parent | 502b941f76e534203ce68f5e40d9923da5c43c0c (diff) | |
download | gcc-5a0a1a6674f6973bb8c60fec6857f1f5c1ee472d.zip gcc-5a0a1a6674f6973bb8c60fec6857f1f5c1ee472d.tar.gz gcc-5a0a1a6674f6973bb8c60fec6857f1f5c1ee472d.tar.bz2 |
* print-rtl.c (print_rtx): For MEMs, print MEM_ALIAS_SET.
From-SVN: r22366
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 0415308..415a2cc 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))) { |