* print-rtl.c (print_rtx): For MEMs, print MEM_ALIAS_SET.

From-SVN: r22366
This commit is contained in:
Bernd Schmidt 1998-09-09 20:59:53 +00:00 committed by Jeff Law
parent 502b941f76
commit 5a0a1a6674
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Wed Sep 9 21:58:41 1998 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
* print-rtl.c (print_rtx): For MEMs, print MEM_ALIAS_SET.
Wed Sep 9 13:14:41 1998 Richard Henderson <rth@cygnus.com>
* loop.c (load_mems): Copy rtx for output mem.

View File

@ -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)))
{