use uint for block ids

This commit is contained in:
Quentin Carbonneaux 2017-02-06 14:36:27 -05:00
parent 835b2b4910
commit 7e1c1f9f77
8 changed files with 33 additions and 33 deletions

8
all.h
View file

@ -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;