summaryrefslogtreecommitdiff
path: root/gcc/sbitmap.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2004-11-22 09:53:30 +0000
committerNick Clifton <nickc@gcc.gnu.org>2004-11-22 09:53:30 +0000
commit6cb70db4d9333ea241e1076147ec8f3516ea7982 (patch)
tree5479c4e14a0cc60d663a879bf33e349f66953c54 /gcc/sbitmap.c
parent8968965d597d567473c14789ec194391220b7cdd (diff)
sbitmap.c (sbitmap_union_of_preds): Set 'e' to the next edge predecessor in the first for-loop.
* sbitmap.c (sbitmap_union_of_preds): Set 'e' to the next edge predecessor in the first for-loop. From-SVN: r91007
Diffstat (limited to 'gcc/sbitmap.c')
-rw-r--r--gcc/sbitmap.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/sbitmap.c b/gcc/sbitmap.c
index b1e3c99efd8..e53c60aa453 100644
--- a/gcc/sbitmap.c
+++ b/gcc/sbitmap.c
@@ -638,6 +638,7 @@ sbitmap_union_of_preds (sbitmap dst, sbitmap *src, int bb)
for (e = NULL, ix = 0; ix < EDGE_COUNT (b->preds); ix++)
{
+ e = EDGE_PRED (b, ix);
if (e->src== ENTRY_BLOCK_PTR)
continue;