mirror of
https://github.com/gcc-mirror/gcc.git
synced 2024-11-21 13:40:47 +00:00
SH: Fix PR 111001
gcc/ChangeLog: PR target/111001 * config/sh/sh_treg_combine.cc (sh_treg_combine::record_set_of_reg): Skip over nop move insns.
This commit is contained in:
parent
9ed6b22eb4
commit
267e369afb
@ -729,7 +729,14 @@ sh_treg_combine::record_set_of_reg (rtx reg, rtx_insn *start_insn,
|
||||
}
|
||||
else if (REG_P (new_entry.cstore.set_src ()))
|
||||
{
|
||||
// If it's a reg-reg copy follow the copied reg.
|
||||
// If it's a reg-reg copy follow the copied reg, but ignore
|
||||
// nop copies of the reg onto itself.
|
||||
if (REGNO (new_entry.cstore.set_src ()) == REGNO (reg))
|
||||
{
|
||||
i = prev_nonnote_nondebug_insn_bb (i);
|
||||
continue;
|
||||
}
|
||||
|
||||
new_entry.cstore_reg_reg_copies.push_back (new_entry.cstore);
|
||||
reg = new_entry.cstore.set_src ();
|
||||
i = new_entry.cstore.insn;
|
||||
|
Loading…
Reference in New Issue
Block a user