Commit 394411d5 by Bernd Schmidt Committed by Bernd Schmidt

Fix error in last change

From-SVN: r38468
parent 6f7ebcbb
2000-12-22 Bernd Schmidt <bernds@redhat.com>
* config/ia64/ia64.c (itanium_reorder): Only schedule stops in
the final scheduling pass.
2000-12-22 Nick Clifton <nickc@redhat.com> 2000-12-22 Nick Clifton <nickc@redhat.com>
* config/arm/arm.h (struct machine_function): Add new field * config/arm/arm.h (struct machine_function): Add new field
......
...@@ -5596,7 +5596,7 @@ ia64_sched_reorder (dump, sched_verbose, ready, pn_ready, reorder_type) ...@@ -5596,7 +5596,7 @@ ia64_sched_reorder (dump, sched_verbose, ready, pn_ready, reorder_type)
highest = ready[n_ready - 1]; highest = ready[n_ready - 1];
ready[n_ready - 1] = insn; ready[n_ready - 1] = insn;
*insnp = highest; *insnp = highest;
if (group_barrier_needed_p (insn)) if (ia64_final_schedule && group_barrier_needed_p (insn))
{ {
schedule_stop (sched_verbose ? dump : NULL); schedule_stop (sched_verbose ? dump : NULL);
sched_data.last_was_stop = 1; sched_data.last_was_stop = 1;
......
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