summaryrefslogtreecommitdiff
path: root/gcc/sbitmap.c
diff options
context:
space:
mode:
authornickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4>2004-11-22 16:39:22 +0000
committernickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4>2004-11-22 16:39:22 +0000
commitcf141158107078f1677178376a7e8679e40b5e3b (patch)
tree411ea2c5a9f20439209a0bf9432ac392056d50f9 /gcc/sbitmap.c
parent8d77f669e4cf7644bbd8274acba5587a4dd79957 (diff)
downloadgcc-cf141158107078f1677178376a7e8679e40b5e3b.tar.gz
sbitmap.c (sbitmap_union_of_preds): Remove redundant initialisation of 'e'.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@91017 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/sbitmap.c')
-rw-r--r--gcc/sbitmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/sbitmap.c b/gcc/sbitmap.c
index fe7a9959ff8..f4abaeeba27 100644
--- a/gcc/sbitmap.c
+++ b/gcc/sbitmap.c
@@ -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)