properly clear predecessors in fillpreds

This commit is contained in:
Quentin Carbonneaux 2015-07-10 12:37:41 -04:00
parent 935ab611f0
commit 11db0b61d9
2 changed files with 2 additions and 1 deletions

View file

@ -86,9 +86,9 @@ struct Blk {
} jmp;
Blk *s1;
Blk *s2;
Blk *link;
char name[NString];
Blk *link;
Blk **preds;
int npreds;
};