summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/df-core.c2
2 files changed, 4 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 5ef6ae41c23..e4a6b436243 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2006-01-29 Kenneth Zadeck <zadeck@naturalbridge.com>
+
+ * df-core.c (df_set_blocks): Deleted all variable.
+
2006-01-28 Ian Lance Taylor <ian@airs.com>
* cgraphunit.c (cgraph_assemble_pending_functions): Call
diff --git a/gcc/df-core.c b/gcc/df-core.c
index 416406b68f1..dc0379c7e9d 100644
--- a/gcc/df-core.c
+++ b/gcc/df-core.c
@@ -365,7 +365,6 @@ df_set_blocks (struct df *df, bitmap blocks)
{
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 blocks)
}
}
- BITMAP_FREE (all);
BITMAP_FREE (diff);
}
else