Commit 1995f267 by Richard Kenner

(assign_stack_temp): Clear MEM flags from reuse.

From-SVN: r13623
parent 9956bfc0
......@@ -913,6 +913,11 @@ assign_stack_temp (mode, size, keep)
p->level = temp_slot_level;
p->keep = keep;
}
/* We may be reusing an old slot, so clear any MEM flags that may have been
set from before. */
RTX_UNCHANGING_P (p->slot) = 0;
MEM_IN_STRUCT_P (p->slot) = 0;
return p->slot;
}
......
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