(decrement_and_branch_until_zero+[3-8]): Add missing CC_STATUS_INIT.

(decrement_and_branch_until_zero+[5-8]): Delete redundant assignment.

From-SVN: r13248
This commit is contained in:
Richard Kenner 1996-12-07 18:56:50 -05:00
parent f1e869df63
commit 3cd3e83378

View File

@ -5749,6 +5749,7 @@
""
"*
{
CC_STATUS_INIT;
operands[2] = const1_rtx;
output_asm_insn (AS2 (sub%L0,%2,%0), operands);
return \"jnc %l1\";
@ -5766,6 +5767,7 @@
""
"*
{
CC_STATUS_INIT;
operands[2] = const1_rtx;
output_asm_insn (AS2 (sub%L0,%2,%0), operands);
return \"jc %l1\";
@ -5783,7 +5785,7 @@
""
"*
{
operands[2] = const1_rtx;
CC_STATUS_INIT;
output_asm_insn (AS1 (dec%L0,%0), operands);
return \"jnz %l1\";
}")
@ -5800,7 +5802,7 @@
""
"*
{
operands[2] = const1_rtx;
CC_STATUS_INIT;
output_asm_insn (AS1 (dec%L0,%0), operands);
return \"jz %l1\";
}")
@ -5817,7 +5819,7 @@
""
"*
{
operands[2] = const1_rtx;
CC_STATUS_INIT;
output_asm_insn (AS1 (inc%L0,%0), operands);
return \"jnz %l1\";
}")
@ -5834,7 +5836,7 @@
""
"*
{
operands[2] = const1_rtx;
CC_STATUS_INIT;
output_asm_insn (AS1 (inc%L0,%0), operands);
return \"jz %l1\";
}")