diff options
author | Nick Clifton <nickc@redhat.com> | 2004-11-22 16:39:22 +0000 |
---|---|---|
committer | Nick Clifton <nickc@gcc.gnu.org> | 2004-11-22 16:39:22 +0000 |
commit | 18b0f6cc7a489ef29f09c612de09e20750900700 (patch) | |
tree | 411ea2c5a9f20439209a0bf9432ac392056d50f9 /gcc/sbitmap.c | |
parent | 907109016b1f9be5ce130620b9c176aac8331abe (diff) | |
download | gcc-18b0f6cc7a489ef29f09c612de09e20750900700.zip gcc-18b0f6cc7a489ef29f09c612de09e20750900700.tar.gz gcc-18b0f6cc7a489ef29f09c612de09e20750900700.tar.bz2 |
sbitmap.c (sbitmap_union_of_preds): Remove redundant initialisation of 'e'.
From-SVN: r91017
Diffstat (limited to 'gcc/sbitmap.c')
-rw-r--r-- | gcc/sbitmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/sbitmap.c b/gcc/sbitmap.c index fe7a995..f4abaee 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) |