diff options
author | steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-02-18 22:33:23 +0000 |
---|---|---|
committer | steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-02-18 22:33:23 +0000 |
commit | 896bc914ac8e2397531e2de2e2ad85a5ac0c7e3e (patch) | |
tree | a3df7eb8adb0f115eb006dd8b2e382fe076b9a22 /gcc/local-alloc.c | |
parent | de70c973ca71e90b437988bf54d8dc1ed420d7d2 (diff) | |
download | gcc-896bc914ac8e2397531e2de2e2ad85a5ac0c7e3e.tar.gz |
PR rtl-optimization/30773
* local-alloc.c (update_equiv_regs): Do not set reg_equiv_init
if we fail to attach a REG_EQUIV note.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@122106 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/local-alloc.c')
-rw-r--r-- | gcc/local-alloc.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/local-alloc.c b/gcc/local-alloc.c index 6f24968f10c..f46b9c98067 100644 --- a/gcc/local-alloc.c +++ b/gcc/local-alloc.c @@ -1062,10 +1062,11 @@ update_equiv_regs (void) { rtx init_insn = XEXP (reg_equiv[regno].init_insns, 0); if (validate_equiv_mem (init_insn, src, dest) - && ! memref_used_between_p (dest, init_insn, insn)) + && ! memref_used_between_p (dest, init_insn, insn) + /* Attaching a REG_EQUIV note will fail if INIT_INSN has + multiple sets. */ + && set_unique_reg_note (init_insn, REG_EQUIV, copy_rtx (dest))) { - set_unique_reg_note (init_insn, REG_EQUIV, copy_rtx (dest)); - /* This insn makes the equivalence, not the one initializing the register. */ reg_equiv_init[regno] |