From: Richard Kenner Date: Thu, 25 Jul 1996 01:47:52 +0000 (-0400) Subject: (canon_hash, cse_insn): MEM is not unchanging if it is in the frame (since X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9ad91d711549e9c3def747befde85296702511d4;p=gcc.git (canon_hash, cse_insn): MEM is not unchanging if it is in the frame (since the temp slot might be reused). From-SVN: r12562 --- diff --git a/gcc/cse.c b/gcc/cse.c index ba816d780c0..b54854e815e 100644 --- a/gcc/cse.c +++ b/gcc/cse.c @@ -1945,7 +1945,7 @@ canon_hash (x, mode) do_not_record = 1; return 0; } - if (! RTX_UNCHANGING_P (x)) + if (! RTX_UNCHANGING_P (x) || FIXED_BASE_PLUS_P (XEXP (x, 0))) { hash_arg_in_memory = 1; if (MEM_IN_STRUCT_P (x)) hash_arg_in_struct = 1; @@ -7377,7 +7377,9 @@ cse_insn (insn, in_libcall_block) elt = insert (dest, sets[i].src_elt, sets[i].dest_hash, GET_MODE (dest)); elt->in_memory = (GET_CODE (sets[i].inner_dest) == MEM - && ! RTX_UNCHANGING_P (sets[i].inner_dest)); + && (! RTX_UNCHANGING_P (sets[i].inner_dest) + || FIXED_BASE_PLUS_P (XEXP (sets[i].inner_dest, + 0)))); if (elt->in_memory) {