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

From-SVN: r33808
This commit is contained in:
Richard Kenner 2000-05-09 22:44:28 +00:00 committed by Richard Kenner
parent 83a0c79941
commit 4c3f1588d4
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,7 @@
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

View File

@ -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. */