* print-rtl.c (print_rtx): For MEMs, print MEM_ALIAS_SET.
authorBernd Schmidt <crux@pool.informatik.rwth-aachen.de>
Wed, 9 Sep 1998 20:59:53 +0000 (20:59 +0000)
committerJeff Law <law@gcc.gnu.org>
Wed, 9 Sep 1998 20:59:53 +0000 (14:59 -0600)
From-SVN: r22366

gcc/ChangeLog
gcc/print-rtl.c

index 04cfdadbb91ffb4318f572d1f0fe8ce25cee002e..68ecf1ce61eeab7e1575b598168c0a1503c5feb4 100644 (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.
index 0415308cd35b5d2727b1a42e87b9ca5df2a0ddd6..415a2cc8ad41c5c8b2ffcdab479a3094cf8d2d1c 100644 (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)))
     {