This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]