Revert more of previous change

From-SVN: r41111
This commit is contained in:
Bernd Schmidt 2001-04-05 11:55:22 +00:00 committed by Bernd Schmidt
parent 5e83864639
commit 0c23cca355
2 changed files with 5 additions and 12 deletions

View file

@ -1,3 +1,8 @@
2001-04-05 Bernd Schmidt <bernds@redhat.com>
* sched-deps.c (sched_analyze_insn): Revert more of the March 27
change.
2001-04-04 Zack Weinberg <zackw@stanford.edu>
* config.gcc: Remove default for xm_file. Clean up local

View file

@ -1113,18 +1113,6 @@ sched_analyze_insn (deps, x, insn, loop_notes)
}
flush_pending_lists (deps, insn, 0);
pending = deps->pending_write_insns;
pending_mem = deps->pending_write_mems;
while (pending)
{
add_dependence (insn, XEXP (pending, 0), 0);
pending = XEXP (pending, 1);
pending_mem = XEXP (pending_mem, 1);
}
for (u = deps->last_pending_memory_flush; u; u = XEXP (u, 1))
add_dependence (insn, XEXP (u, 0), REG_DEP_ANTI);
reg_pending_sets_all = 1;
}