df-scan.c: (df_bb_refs_record): Fix obvious typo with wrong block as parameter.
authorKenneth Zadeck <zadeck@naturalbridge.com>
Wed, 8 Mar 2006 02:29:18 +0000 (02:29 +0000)
committerKenneth Zadeck <zadeck@gcc.gnu.org>
Wed, 8 Mar 2006 02:29:18 +0000 (02:29 +0000)
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

gcc/ChangeLog
gcc/df-scan.c

index 8c7f18becfc5b21cbc2566e9865312f23726b325..ec8b57ca439570bc8a755fe24767513a19dacd5d 100644 (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.
index 1ed153d6396b15890bfdc18c90df625b1cc5e577..1e1ed269606e97cebe63dc789915aba0257ab4c4 100644 (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