]> gcc.gnu.org Git - gcc.git/commitdiff
* expmed.c (emit_store_flag_force): Fix typos/thinkos.
authorJeff Law <law@gcc.gnu.org>
Thu, 12 Dec 1996 17:57:58 +0000 (10:57 -0700)
committerJeff Law <law@gcc.gnu.org>
Thu, 12 Dec 1996 17:57:58 +0000 (10:57 -0700)
From-SVN: r13296

gcc/expmed.c

index 8bd8d3fe996f6296564b819ddc33c5b896e3b561..c7744c7654a7afc19a6948d077070bf94090d166 100644 (file)
@@ -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;
This page took 0.07285 seconds and 5 git commands to generate.