mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-28 00:44:21 +08:00
ira.c (setup_class_hard_regs): Fix typo in indexing ira_non_ordered_class_hard_regs and ira_class_hard_reg_index.
2010-10-13 Vladimir Makarov <vmakarov@redhat.com> * ira.c (setup_class_hard_regs): Fix typo in indexing ira_non_ordered_class_hard_regs and ira_class_hard_reg_index. From-SVN: r165450
This commit is contained in:
parent
0d16f46289
commit
854edfcda4
@ -1,3 +1,8 @@
|
||||
2010-10-13 Vladimir Makarov <vmakarov@redhat.com>
|
||||
|
||||
* ira.c (setup_class_hard_regs): Fix typo in indexing
|
||||
ira_non_ordered_class_hard_regs and ira_class_hard_reg_index.
|
||||
|
||||
2010-10-14 Tijs Wiebe Lefering <twlevo@gmail.com>
|
||||
|
||||
* graph.c (inbb): New variable.
|
||||
|
@ -397,8 +397,8 @@ setup_class_hard_regs (void)
|
||||
CLEAR_HARD_REG_SET (processed_hard_reg_set);
|
||||
for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
|
||||
{
|
||||
ira_non_ordered_class_hard_regs[cl][0] = -1;
|
||||
ira_class_hard_reg_index[cl][0] = -1;
|
||||
ira_non_ordered_class_hard_regs[cl][i] = -1;
|
||||
ira_class_hard_reg_index[cl][i] = -1;
|
||||
}
|
||||
for (n = 0, i = 0; i < FIRST_PSEUDO_REGISTER; i++)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user