diff options
author | Nick Clifton <nickc@redhat.com> | 2004-11-22 09:53:30 +0000 |
---|---|---|
committer | Nick Clifton <nickc@gcc.gnu.org> | 2004-11-22 09:53:30 +0000 |
commit | 6cb70db4d9333ea241e1076147ec8f3516ea7982 (patch) | |
tree | 5479c4e14a0cc60d663a879bf33e349f66953c54 /gcc/sbitmap.c | |
parent | 8968965d597d567473c14789ec194391220b7cdd (diff) | |
download | gcc-6cb70db4d9333ea241e1076147ec8f3516ea7982.zip gcc-6cb70db4d9333ea241e1076147ec8f3516ea7982.tar.gz gcc-6cb70db4d9333ea241e1076147ec8f3516ea7982.tar.bz2 |
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.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/sbitmap.c b/gcc/sbitmap.c index b1e3c99..e53c60a 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; |