OSDN Git Service

sbitmap.c (sbitmap_union_of_preds): Remove redundant initialisation of 'e'.
[pf3gnuchains/gcc-fork.git] / gcc / sbitmap.c
index fe7a995..f4abaee 100644 (file)
@@ -637,7 +637,7 @@ sbitmap_union_of_preds (sbitmap dst, sbitmap *src, int bb)
   edge e;
   unsigned ix;
 
-  for (e = NULL, ix = 0; ix < EDGE_COUNT (b->preds); ix++)
+  for (ix = 0; ix < EDGE_COUNT (b->preds); ix++)
     {
       e = EDGE_PRED (b, ix);
       if (e->src== ENTRY_BLOCK_PTR)