diff options
Diffstat (limited to 'gcc/loop.c')
-rw-r--r-- | gcc/loop.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/loop.c b/gcc/loop.c index c379b6162d4..3a658b0698b 100644 --- a/gcc/loop.c +++ b/gcc/loop.c @@ -2998,8 +2998,7 @@ note_addr_stored (x, y) return; for (i = 0; i < loop_store_mems_idx; i++) - if (rtx_equal_p (XEXP (loop_store_mems[i], 0), XEXP (x, 0)) - && MEM_IN_STRUCT_P (x) == MEM_IN_STRUCT_P (loop_store_mems[i])) + if (rtx_equal_p (XEXP (loop_store_mems[i], 0), XEXP (x, 0))) { /* We are storing at the same address as previously noted. Save the wider reference. */ |