Commit 760607e8 by Richard Kenner

(fill_slots_from_thread): Update thread if it is split.

From-SVN: r10359
parent ff1720ed
...@@ -3386,6 +3386,8 @@ fill_slots_from_thread (insn, condition, thread, opposite_thread, likely, ...@@ -3386,6 +3386,8 @@ fill_slots_from_thread (insn, condition, thread, opposite_thread, likely,
trial = try_split (pat, trial, 0); trial = try_split (pat, trial, 0);
if (new_thread == old_trial) if (new_thread == old_trial)
new_thread = trial; new_thread = trial;
if (thread == old_trial)
thread = trial;
pat = PATTERN (trial); pat = PATTERN (trial);
if ((thread_if_true if ((thread_if_true
? eligible_for_annul_false (insn, *pslots_filled, trial, flags) ? eligible_for_annul_false (insn, *pslots_filled, trial, flags)
......
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