(schedule_block): CALL_INSNs don't affect fixed regs.
From-SVN: r11648
This commit is contained in:
parent
5bb3d1dded
commit
4cf8614f1e
@ -3823,7 +3823,8 @@ schedule_block (b, file)
|
|||||||
for those mentioned in the call pattern which will be
|
for those mentioned in the call pattern which will be
|
||||||
made live again later. */
|
made live again later. */
|
||||||
for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
|
for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
|
||||||
if (call_used_regs[i] || global_regs[i])
|
if ((call_used_regs[i] && ! fixed_regs[i])
|
||||||
|
|| global_regs[i])
|
||||||
{
|
{
|
||||||
register int offset = i / REGSET_ELT_BITS;
|
register int offset = i / REGSET_ELT_BITS;
|
||||||
register REGSET_ELT_TYPE bit
|
register REGSET_ELT_TYPE bit
|
||||||
|
Loading…
Reference in New Issue
Block a user