attempt more correct loop marking

This commit is contained in:
Quentin Carbonneaux 2015-07-22 03:00:03 -04:00
parent 3538e769a7
commit a6168e6ed5
3 changed files with 38 additions and 29 deletions

View file

@ -128,13 +128,14 @@ struct Blk {
Blk *s2;
Blk *link;
int id;
int visit;
Blk **pred;
uint npred;
Bits in, out, gen;
int nlive;
int loop;
char name[NString];
int id;
};
struct Sym {