Commit a500c31b by Jeffrey A Law Committed by Jeff Law

i386.c (ix86_expand_setcc): Fix typo.

        * i386.c (ix86_expand_setcc): Fix typo.
        (ix86_expand_movcc): Similarly.

From-SVN: r31325
parent bbf27bbe
......@@ -10,6 +10,9 @@ Tue Jan 11 06:14:39 2000 David Starner <dstarner98@aasaa.ofe.org>
Tue Jan 11 05:49:01 2000 Jeffrey A Law (law@cygnus.com)
* i386.c (ix86_expand_setcc): Fix typo.
(ix86_expand_movcc): Similarly.
* Band-aid until haifa's bitset implementation is nuked.
* haifa-sched.c (extract_bitlst): New parameter for size of the
bitset in bits. All callers changed. Avoid looking at undefined
......
......@@ -4346,7 +4346,7 @@ ix86_expand_setcc (code, unordered, dest)
if (GET_MODE (dest) == QImode)
type = 2;
else if (reg_overlap_mentioned_p (dest, ix86_compare_op0)
|| reg_overlap_mentioned_p (dest, ix86_compare_op0))
|| reg_overlap_mentioned_p (dest, ix86_compare_op1))
type = 1;
if (type == 0)
......@@ -4446,7 +4446,7 @@ ix86_expand_int_movcc (operands)
diff = ct - cf;
if (reg_overlap_mentioned_p (out, ix86_compare_op0)
|| reg_overlap_mentioned_p (out, ix86_compare_op0))
|| reg_overlap_mentioned_p (out, ix86_compare_op1))
tmp = gen_reg_rtx (SImode);
emit_insn (compare_seq);
......
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