i386.c (ix86_expand_setcc): Fix typo.

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

From-SVN: r31325
This commit is contained in:
Jeffrey A Law 2000-01-11 13:37:37 +00:00 committed by Jeff Law
parent bbf27bbe57
commit a500c31b2e
2 changed files with 5 additions and 2 deletions

View File

@ -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

View File

@ -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);