use uint for block ids
This commit is contained in:
parent
835b2b4910
commit
7e1c1f9f77
8 changed files with 33 additions and 33 deletions
6
load.c
6
load.c
|
@ -26,7 +26,7 @@ struct Slice {
|
|||
struct Insert {
|
||||
uint isphi:1;
|
||||
uint num:31;
|
||||
int bid;
|
||||
uint bid;
|
||||
uint off;
|
||||
union {
|
||||
Ins ins;
|
||||
|
@ -329,8 +329,8 @@ loadopt(Fn *fn)
|
|||
{
|
||||
Ins *i, *ib;
|
||||
Blk *b;
|
||||
int n, sz;
|
||||
uint ni, ext, nt;
|
||||
int sz;
|
||||
uint n, ni, ext, nt;
|
||||
Insert *ist;
|
||||
Slice sl;
|
||||
Loc l;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue