Commit c1cb76e9 by Richard Henderson Committed by Richard Henderson

haifa-sched.c (sched_analyze): Mark call-user regs as clobbered instead of set.

        * haifa-sched.c (sched_analyze): Mark call-user regs as clobbered
        instead of set.

From-SVN: r27615
parent 0045e0bc
Sat Jun 19 22:52:55 1999 Richard Henderson <rth@cygnus.com>
* haifa-sched.c (sched_analyze): Mark call-user regs as clobbered
instead of set.
Sat Jun 19 05:40:07 1999 Philip Blundell <pb@nexus.co.uk>
* arm.c (arm_reload_in_hi): Invert sense of test on BYTES_BIG_ENDIAN.
......
......@@ -3957,11 +3957,7 @@ sched_analyze (head, tail)
for (u = reg_last_sets[i]; u; u = XEXP (u, 1))
add_dependence (insn, XEXP (u, 0), REG_DEP_ANTI);
if (global_regs[i])
for (u = reg_last_clobbers[i]; u; u = XEXP (u, 1))
add_dependence (insn, XEXP (u, 0), REG_DEP_ANTI);
SET_REGNO_REG_SET (reg_pending_sets, i);
SET_REGNO_REG_SET (reg_pending_clobbers, i);
}
}
......
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