* regclass.c (cannot_change_mode_set_regs): Correct argument order.

From-SVN: r62302
This commit is contained in:
Jan Hubicka 2003-02-03 01:31:53 +01:00 committed by Jan Hubicka
parent f2e05ec7c7
commit 035b2a3475
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Mon Feb 3 01:30:11 CET 2003 Jan Hubicka <jh@suse.cz>
* regclass.c (cannot_change_mode_set_regs): Correct argument order.
2003-02-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* mips/_tilib.c: Don't include tsystem.h or defaults.h. Don't

View File

@ -2640,7 +2640,7 @@ cannot_change_mode_set_regs (used, from, regno)
int i;
for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
if (! TEST_HARD_REG_BIT (*used, i)
&& REG_CANNOT_CHANGE_MODE_P (from, to, i))
&& REG_CANNOT_CHANGE_MODE_P (i, from, to))
SET_HARD_REG_BIT (*used, i);
}
}