Commit 4c3f1588 by Richard Kenner Committed by Richard Kenner

* reload1.c (reload_combine): Fix errors in last change.

From-SVN: r33808
parent 83a0c799
Tue May 9 18:54:16 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* reload1.c (reload_combine): Fix errors in last change.
2000-05-09 Zack Weinberg <zack@wolery.cumb.org>
* gcc.c (used_arg): Skip over a semicolon at the end of the
......
......@@ -8393,9 +8393,10 @@ reload_combine ()
for (r = 0; r < FIRST_PSEUDO_REGISTER; r++)
if (TEST_HARD_REG_BIT (reg_class_contents[INDEX_REG_CLASS], r))
{
if (! last_index_reg)
last_index_reg = r;
first_index_reg = i;
if (! first_index_reg)
first_index_reg = r;
last_index_reg = r;
}
/* If no index register is available, we can quit now. */
......
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