aboutsummaryrefslogtreecommitdiff
path: root/gcc/emit-rtl.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/emit-rtl.c')
-rw-r--r--gcc/emit-rtl.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c
index dacf27e087c..652cf1fe5ae 100644
--- a/gcc/emit-rtl.c
+++ b/gcc/emit-rtl.c
@@ -2553,6 +2553,12 @@ replace_equiv_address (rtx memref, rtx addr, bool inplace)
/* change_address_1 copies the memory attribute structure without change
and that's exactly what we want here. */
update_temp_slot_address (XEXP (memref, 0), addr);
+
+ if (dump_file) {
+ fprintf (dump_file, "kelvin says replace_equiv_address is looking at\n");
+ print_rtl (dump_file, addr);
+ }
+
return change_address_1 (memref, VOIDmode, addr, 1, inplace);
}