]> gcc.gnu.org Git - gcc.git/commitdiff
(decrement_and_branch_until_zero+[3-8]): Add missing CC_STATUS_INIT.
authorRichard Kenner <kenner@gcc.gnu.org>
Sat, 7 Dec 1996 23:56:50 +0000 (18:56 -0500)
committerRichard Kenner <kenner@gcc.gnu.org>
Sat, 7 Dec 1996 23:56:50 +0000 (18:56 -0500)
(decrement_and_branch_until_zero+[5-8]): Delete redundant assignment.

From-SVN: r13248

gcc/config/i386/i386.md

index 210e479b547b6cf0c4c6aea5bce7218450fd3f39..bbd24f56da06c4fe326abc16d71424b2945f881f 100644 (file)
   ""
   "*
 {
+  CC_STATUS_INIT;
   operands[2] = const1_rtx;
   output_asm_insn (AS2 (sub%L0,%2,%0), operands);
   return \"jnc %l1\";
   ""
   "*
 {
+  CC_STATUS_INIT;
   operands[2] = const1_rtx;
   output_asm_insn (AS2 (sub%L0,%2,%0), operands);
   return \"jc %l1\";
   ""
   "*
 {
-  operands[2] = const1_rtx;
+  CC_STATUS_INIT;
   output_asm_insn (AS1 (dec%L0,%0), operands);
   return \"jnz %l1\";
 }")
   ""
   "*
 {
-  operands[2] = const1_rtx;
+  CC_STATUS_INIT;
   output_asm_insn (AS1 (dec%L0,%0), operands);
   return \"jz %l1\";
 }")
   ""
   "*
 {
-  operands[2] = const1_rtx;
+  CC_STATUS_INIT;
   output_asm_insn (AS1 (inc%L0,%0), operands);
   return \"jnz %l1\";
 }")
   ""
   "*
 {
-  operands[2] = const1_rtx;
+  CC_STATUS_INIT;
   output_asm_insn (AS1 (inc%L0,%0), operands);
   return \"jz %l1\";
 }")
This page took 0.075808 seconds and 5 git commands to generate.