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
This commit is contained in:
parent
8968965d59
commit
6cb70db4d9
@ -1,3 +1,8 @@
|
||||
2004-11-22 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* sbitmap.c (sbitmap_union_of_preds): Set 'e' to the next edge
|
||||
predecessor in the first for-loop.
|
||||
|
||||
2004-11-21 Stan Shebs <shebs@apple.com>
|
||||
|
||||
* config/rs6000/rs6000.c: (rs6000_darwin64_function_arg): Add
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user