Commit c256df0b by Richard Kenner

(cse_insn): Properly set IN_MEMORY for SET_DEST.

From-SVN: r9547
parent abd23b66
......@@ -7273,7 +7273,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;
elt->in_memory = (GET_CODE (sets[i].inner_dest) == MEM
&& ! RTX_UNCHANGING_P (sets[i].inner_dest));
if (elt->in_memory)
{
/* This implicitly assumes a whole struct
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment