diff options
| author | Quentin Carbonneaux <[email protected]> | 2017-02-06 14:36:27 -0500 |
|---|---|---|
| committer | Quentin Carbonneaux <[email protected]> | 2017-02-06 14:36:27 -0500 |
| commit | 7e1c1f9f779aa4d55c3cbc9e16a9f8f2884dd3fe (patch) | |
| tree | 1956b81f5c2a9eea51d6bbc9a4071d83874dd492 /all.h | |
| parent | 835b2b4910c19ee2a9411da55080be6b1e30a722 (diff) | |
use uint for block ids
Diffstat (limited to 'all.h')
| -rw-r--r-- | all.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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; |
