aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2004-11-22 16:39:22 +0000
committerNick Clifton <nickc@gcc.gnu.org>2004-11-22 16:39:22 +0000
commit18b0f6cc7a489ef29f09c612de09e20750900700 (patch)
tree411ea2c5a9f20439209a0bf9432ac392056d50f9 /gcc
parent907109016b1f9be5ce130620b9c176aac8331abe (diff)
downloadgcc-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')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/sbitmap.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 86ea00b..6c3ed41 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2004-11-22 Nick Clifton <nickc@redhat.com>
+
+ * sbitmap.c (sbitmap_union_of_preds): Remove redundant
+ initialisation of 'e'.
+
2004-11-22 Kazu Hirata <kazu@cs.umass.edu>
PR rtl-optimization/18599
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)