use uint for block ids
This commit is contained in:
parent
835b2b4910
commit
7e1c1f9f77
8 changed files with 33 additions and 33 deletions
8
all.h
8
all.h
|
@ -333,13 +333,13 @@ struct Blk {
|
|||
Blk *s2;
|
||||
Blk *link;
|
||||
|
||||
int id;
|
||||
int visit;
|
||||
uint id;
|
||||
uint visit;
|
||||
|
||||
Blk *idom;
|
||||
Blk *dom, *dlink;
|
||||
Blk **fron;
|
||||
int nfron;
|
||||
uint nfron;
|
||||
|
||||
Blk **pred;
|
||||
uint npred;
|
||||
|
@ -432,7 +432,7 @@ struct Fn {
|
|||
int ntmp;
|
||||
int ncon;
|
||||
int nmem;
|
||||
int nblk;
|
||||
uint nblk;
|
||||
int retty; /* index in typ[], -1 if no aggregate return */
|
||||
Ref retr;
|
||||
Blk **rpo;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue