Commit 50d5ff7d by Kenneth Zadeck Committed by Kenneth Zadeck

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
parent cd554454
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.
......
......@@ -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
......
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