Commit 3cd3e833 by Richard Kenner

(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
parent f1e869df
...@@ -5749,6 +5749,7 @@ ...@@ -5749,6 +5749,7 @@
"" ""
"* "*
{ {
CC_STATUS_INIT;
operands[2] = const1_rtx; operands[2] = const1_rtx;
output_asm_insn (AS2 (sub%L0,%2,%0), operands); output_asm_insn (AS2 (sub%L0,%2,%0), operands);
return \"jnc %l1\"; return \"jnc %l1\";
...@@ -5766,6 +5767,7 @@ ...@@ -5766,6 +5767,7 @@
"" ""
"* "*
{ {
CC_STATUS_INIT;
operands[2] = const1_rtx; operands[2] = const1_rtx;
output_asm_insn (AS2 (sub%L0,%2,%0), operands); output_asm_insn (AS2 (sub%L0,%2,%0), operands);
return \"jc %l1\"; return \"jc %l1\";
...@@ -5783,7 +5785,7 @@ ...@@ -5783,7 +5785,7 @@
"" ""
"* "*
{ {
operands[2] = const1_rtx; CC_STATUS_INIT;
output_asm_insn (AS1 (dec%L0,%0), operands); output_asm_insn (AS1 (dec%L0,%0), operands);
return \"jnz %l1\"; return \"jnz %l1\";
}") }")
...@@ -5800,7 +5802,7 @@ ...@@ -5800,7 +5802,7 @@
"" ""
"* "*
{ {
operands[2] = const1_rtx; CC_STATUS_INIT;
output_asm_insn (AS1 (dec%L0,%0), operands); output_asm_insn (AS1 (dec%L0,%0), operands);
return \"jz %l1\"; return \"jz %l1\";
}") }")
...@@ -5817,7 +5819,7 @@ ...@@ -5817,7 +5819,7 @@
"" ""
"* "*
{ {
operands[2] = const1_rtx; CC_STATUS_INIT;
output_asm_insn (AS1 (inc%L0,%0), operands); output_asm_insn (AS1 (inc%L0,%0), operands);
return \"jnz %l1\"; return \"jnz %l1\";
}") }")
...@@ -5834,7 +5836,7 @@ ...@@ -5834,7 +5836,7 @@
"" ""
"* "*
{ {
operands[2] = const1_rtx; CC_STATUS_INIT;
output_asm_insn (AS1 (inc%L0,%0), operands); output_asm_insn (AS1 (inc%L0,%0), operands);
return \"jz %l1\"; return \"jz %l1\";
}") }")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment