df-scan.c: (df_bb_refs_record): Fix obvious typo with wrong block as parameter.

2006-03-07  Kenneth Zadeck <zadeck@naturalbridge.com>

    * df-scan.c: (df_bb_refs_record): Fix obvious typo with wrong
    block as parameter.

From-SVN: r111837
This commit is contained in:
Kenneth Zadeck 2006-03-08 02:29:18 +00:00 committed by Kenneth Zadeck
parent cd55445430
commit 50d5ff7d8f
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-03-07 Kenneth Zadeck <zadeck@naturalbridge.com>
* df-scan.c: (df_bb_refs_record): Fix obvious typo with wrong
block as parameter.
2006-03-07 Geoffrey Keating <geoffk@apple.com>
* varasm.c (assemble_end_function): Say that 'fnname' is unused.

View File

@ -1599,7 +1599,7 @@ df_bb_refs_record (struct dataflow *dflow, basic_block bb)
for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
if (EH_USES (i))
df_uses_record (dflow, &regno_reg_rtx[i],
DF_REF_REG_USE, EXIT_BLOCK_PTR, NULL,
DF_REF_REG_USE, bb, NULL,
DF_REF_ARTIFICIAL | DF_REF_AT_TOP);
#endif