summaryrefslogtreecommitdiff
path: root/gcc/sched-deps.c
diff options
context:
space:
mode:
authorvmakarov <vmakarov@138bc75d-0d04-0410-961f-82ee72b054a4>2010-02-01 19:52:42 +0000
committervmakarov <vmakarov@138bc75d-0d04-0410-961f-82ee72b054a4>2010-02-01 19:52:42 +0000
commit9dab02d910c820ae92f8591e9146e5cf990c8c50 (patch)
tree4712bc481a40d7891f2458b626bd1b8e871d5f65 /gcc/sched-deps.c
parent79a27af7a554de9ead3b5bdab56948f5d7b297a2 (diff)
downloadgcc-9dab02d910c820ae92f8591e9146e5cf990c8c50.tar.gz
2010-02-01 Vladimir Makarov <vmakarov@redhat.com>
PR target/41399 * sched-deps.c (sched_analyze_insn): Ignore fixed registers for implicitly set registers. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@156431 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/sched-deps.c')
-rw-r--r--gcc/sched-deps.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/sched-deps.c b/gcc/sched-deps.c
index 21632c3b5ed..8a6a860ec92 100644
--- a/gcc/sched-deps.c
+++ b/gcc/sched-deps.c
@@ -2623,6 +2623,7 @@ sched_analyze_insn (struct deps *deps, rtx x, rtx insn)
extract_insn (insn);
preprocess_constraints ();
ira_implicitly_set_insn_hard_regs (&temp);
+ AND_COMPL_HARD_REG_SET (temp, ira_no_alloc_regs);
IOR_HARD_REG_SET (implicit_reg_pending_clobbers, temp);
}