Commit 035b2a34 by Jan Hubicka Committed by Jan Hubicka

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

From-SVN: r62302
parent f2e05ec7
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
......
......@@ -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);
}
}
......
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