sbitmap.c (sbitmap_union_of_preds): Remove redundant initialisation of 'e'.
From-SVN: r91017
This commit is contained in:
parent
907109016b
commit
18b0f6cc7a
2 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue