projects
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9071090
)
sbitmap.c (sbitmap_union_of_preds): Remove redundant initialisation of 'e'.
author
Nick Clifton
<nickc@redhat.com>
Mon, 22 Nov 2004 16:39:22 +0000
(16:39 +0000)
committer
Nick Clifton
<nickc@gcc.gnu.org>
Mon, 22 Nov 2004 16:39:22 +0000
(16:39 +0000)
From-SVN: r91017
gcc/ChangeLog
patch
|
blob
|
history
gcc/sbitmap.c
patch
|
blob
|
history
diff --git
a/gcc/ChangeLog
b/gcc/ChangeLog
index 86ea00b29ce5cc37fd91a54796958f4b108b7385..6c3ed41ed82ae9b541415066cbab9a456f8609e5 100644
(file)
--- 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 fe7a9959ff803b2344c5adefaff587e2ec3e44bd..f4abaeeba27e00b3047112eb00ca62bb7616e0f3 100644
(file)
--- 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)