aboutsummaryrefslogtreecommitdiff
path: root/gcc/function.c
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2006-11-10 22:42:04 +0100
committerJan Hubicka <hubicka@gcc.gnu.org>2006-11-10 21:42:04 +0000
commit3e916873cb9c0e4a7865a06be6f0d4a714c7617e (patch)
tree7b0c4d5780c7da1e20a8d73c2051cd1de97dda2e /gcc/function.c
parentd8d8121add34439d69187182bacea680468270df (diff)
downloadgcc-3e916873cb9c0e4a7865a06be6f0d4a714c7617e.zip
gcc-3e916873cb9c0e4a7865a06be6f0d4a714c7617e.tar.gz
gcc-3e916873cb9c0e4a7865a06be6f0d4a714c7617e.tar.bz2
cse.c (cse_process_notes): Copy the propagated value.
* cse.c (cse_process_notes): Copy the propagated value. * local-alloc.c (update_equiv_regs): Copy the memory RTX to be used in REG_EQUIV notes. * gcse.c (try_replace_reg): Copy the replacement. * i386.c (emit_i387_cw_initialization): Copy stored_mode (assign_386_stack_local): Always return copied memory expression * function.c (instantiate_virtual_regs_in_insn): Copy the operand duplicates. From-SVN: r118665
Diffstat (limited to 'gcc/function.c')
-rw-r--r--gcc/function.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/function.c b/gcc/function.c
index 12e391a..cef7fe3 100644
--- a/gcc/function.c
+++ b/gcc/function.c
@@ -1540,7 +1540,7 @@ instantiate_virtual_regs_in_insn (rtx insn)
/* Propagate operand changes into the duplicates. */
for (i = 0; i < recog_data.n_dups; ++i)
*recog_data.dup_loc[i]
- = recog_data.operand[(unsigned)recog_data.dup_num[i]];
+ = copy_rtx (recog_data.operand[(unsigned)recog_data.dup_num[i]]);
/* Force re-recognition of the instruction for validation. */
INSN_CODE (insn) = -1;