mirror of
git://c9x.me/qbe.git
synced 2026-04-05 18:09:47 +00:00
fix small type issues
This commit is contained in:
parent
a244ca17f1
commit
bba9cf47c9
@ -80,7 +80,8 @@ isel(Fn *fn)
|
||||
{
|
||||
Blk *b;
|
||||
Ins *i;
|
||||
int t0, t, nins;
|
||||
int t0, t;
|
||||
uint nins;
|
||||
|
||||
t0 = fn->ntmp;
|
||||
for (b=fn->start; b; b=b->link) {
|
||||
|
||||
@ -142,7 +142,7 @@ struct Sym {
|
||||
STmp,
|
||||
} type;
|
||||
char name[NString];
|
||||
int ndef, nuse;
|
||||
uint ndef, nuse;
|
||||
};
|
||||
|
||||
struct Fn {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user