This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
PATCH for revied on mainline.
- From: Kenneth Zadeck <zadeck at naturalbridge dot com>
- To: GCC Patches <gcc-patches at gcc dot gnu dot org>, Ian Lance Taylor <ian at airs dot com>, "Zadeck, Kenneth" <zadeck at naturalbridge dot com>
- Date: Sat, 28 Jan 2006 21:29:00 -0500
- Subject: PATCH for revied on mainline.
The ALL variable not used in any significant way.
2006-01-27 Kenneth Zadeck <zadeck@naturalbridge.com>
* df-core.c (df_set_blocks): Deleted all variable.
Bootstrapped on i686-pc-linux-gnu.
Kenny
Index: gcc/df-core.c
===================================================================
--- gcc/df-core.c (revision 110356)
+++ gcc/df-core.c (working copy)
@@ -365,7 +365,6 @@ df_set_blocks (struct df *df, bitmap blo
{
int p;
bitmap diff = BITMAP_ALLOC (NULL);
- bitmap all = BITMAP_ALLOC (NULL);
bitmap_and_compl (diff, df->blocks_to_analyze, blocks);
for (p = df->num_problems_defined - 1; p >= 0 ;p--)
{
@@ -390,7 +389,6 @@ df_set_blocks (struct df *df, bitmap blo
}
}
- BITMAP_FREE (all);
BITMAP_FREE (diff);
}
else