aboutsummaryrefslogtreecommitdiff
path: root/gcc/expmed.c
diff options
context:
space:
mode:
authorJeff Law <law@gcc.gnu.org>1996-12-12 10:57:58 -0700
committerJeff Law <law@gcc.gnu.org>1996-12-12 10:57:58 -0700
commite4565aff52709053e9f132d88e82187009c00f55 (patch)
tree13d9f569463cd8eb502c3980b7e3400ecc1c4926 /gcc/expmed.c
parent8cc0156dce140b6c729ad293273433cfa531950f (diff)
downloadgcc-e4565aff52709053e9f132d88e82187009c00f55.zip
gcc-e4565aff52709053e9f132d88e82187009c00f55.tar.gz
gcc-e4565aff52709053e9f132d88e82187009c00f55.tar.bz2
* expmed.c (emit_store_flag_force): Fix typos/thinkos.
From-SVN: r13296
Diffstat (limited to 'gcc/expmed.c')
-rw-r--r--gcc/expmed.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/expmed.c b/gcc/expmed.c
index 8bd8d3f..c7744c7 100644
--- a/gcc/expmed.c
+++ b/gcc/expmed.c
@@ -4288,7 +4288,7 @@ emit_store_flag_force (target, code, op0, op1, mode, unsignedp, normalizep)
|| reg_mentioned_p (target, op0) || reg_mentioned_p (target, op1))
target = gen_reg_rtx (GET_MODE (target));
- emit_move_insn (target, const0_rtx);
+ emit_move_insn (target, const1_rtx);
tem = compare_from_rtx (op0, op1, code, unsignedp, mode, NULL_RTX, 0);
if (GET_CODE (tem) == CONST_INT)
return tem;
@@ -4298,7 +4298,7 @@ emit_store_flag_force (target, code, op0, op1, mode, unsignedp, normalizep)
abort ();
emit_jump_insn ((*bcc_gen_fctn[(int) code]) (label));
- emit_move_insn (target, const1_rtx);
+ emit_move_insn (target, const0_rtx);
emit_label (label);
return target;