diff options
author | Jan Hubicka <hubicka@gcc.gnu.org> | 2003-02-03 15:02:07 +0000 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2003-02-03 15:02:07 +0000 |
commit | 5fb486851a7061966247aa16f9d55792e6f8d684 (patch) | |
tree | 305af1edfeb4e0cc5151663ada9e1e594f26496a | |
parent | 84520a2006b566a56fd7eef614a8c9188b98c32a (diff) | |
download | gcc-5fb486851a7061966247aa16f9d55792e6f8d684.zip gcc-5fb486851a7061966247aa16f9d55792e6f8d684.tar.gz gcc-5fb486851a7061966247aa16f9d55792e6f8d684.tar.bz2 |
* i386.c (ix86_expand_int_movcc): Fix setcc sign bit case.
From-SVN: r62313
-rw-r--r-- | gcc/config/i386/i386.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index edf6d44..48b60ad 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -9560,6 +9560,7 @@ ix86_expand_int_movcc (operands) HOST_WIDE_INT tmp = ct; ct = cf; cf = tmp; + diff = ct - cf; } tmp = emit_store_flag (tmp, code, ix86_compare_op0, ix86_compare_op1, VOIDmode, 0, -1); |