diff options
author | Jeffrey A Law <law@cygnus.com> | 2000-01-11 13:37:37 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2000-01-11 06:37:37 -0700 |
commit | a500c31b2e3b80e6553a5362a1bbf9ebb4d6b40c (patch) | |
tree | e6016ea58a28f9fee780beaa599f6f105767113f | |
parent | bbf27bbe573e093e9778624477420f2be465ac54 (diff) | |
download | gcc-a500c31b2e3b80e6553a5362a1bbf9ebb4d6b40c.zip gcc-a500c31b2e3b80e6553a5362a1bbf9ebb4d6b40c.tar.gz gcc-a500c31b2e3b80e6553a5362a1bbf9ebb4d6b40c.tar.bz2 |
i386.c (ix86_expand_setcc): Fix typo.
* i386.c (ix86_expand_setcc): Fix typo.
(ix86_expand_movcc): Similarly.
From-SVN: r31325
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/config/i386/i386.c | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 468e79f..7231266 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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 diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 47460f0..895cc8c 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -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); |