Commit 99fd4012 by Richard Kenner

(prune_references): Add missing symmetic CONFLICTP call.

From-SVN: r13143
parent 160b7bc4
...@@ -871,7 +871,8 @@ prune_preferences () ...@@ -871,7 +871,8 @@ prune_preferences ()
we want to give the lower-priority allocno the first chance for we want to give the lower-priority allocno the first chance for
these registers). */ these registers). */
for (j = i + 1; j < max_allocno; j++) for (j = i + 1; j < max_allocno; j++)
if (CONFLICTP (allocno, allocno_order[j])) if (CONFLICTP (allocno, allocno_order[j])
|| CONFLICTP (allocno_order[j], allocno))
{ {
COPY_HARD_REG_SET (temp, COPY_HARD_REG_SET (temp,
hard_reg_full_preferences[allocno_order[j]]); hard_reg_full_preferences[allocno_order[j]]);
......
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