Commit 880c4dcb by Richard Earnshaw Committed by Richard Earnshaw

* arm.md (push_multi): Revert unintended change.

From-SVN: r36813
parent 5895f793
2000-10-09 Richard Earnshaw <rearnsha@arm.com>
* arm.md (push_multi): Revert unintended change.
2000-10-09 Richard Earnshaw <rearnsha@arm.com>
* arm.c: Miscellaneous white space and comment clean-ups. No
functional change.
* arm.md: Likewise.
......
......@@ -8783,7 +8783,7 @@
/* For the StrongARM at least it is faster to
use STR to store only a single register. */
if (num_saves == 2)
if (num_saves == 1)
output_asm_insn (\"str\\t%1, [%m0, #-4]!\", operands);
else
{
......@@ -8792,9 +8792,7 @@
strcpy (pattern, \"stmfd\\t%m0!, {%1\");
/* We skip the first register, since we can extract that directly from
the pattern. */
for (i = 2; i < num_saves; i++)
for (i = 1; i < num_saves; i++)
{
strcat (pattern, \", %|\");
strcat (pattern,
......
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