clean the command line interface
This commit is contained in:
parent
a5428d33e1
commit
a18e0ef50f
5 changed files with 99 additions and 119 deletions
10
lisc/isel.c
10
lisc/isel.c
|
@ -679,6 +679,11 @@ isel(Fn *fn)
|
|||
b->nins = n;
|
||||
}
|
||||
|
||||
if (debug['C']) {
|
||||
fprintf(stderr, "\n> After call lowering:\n");
|
||||
printfn(fn, stderr);
|
||||
}
|
||||
|
||||
/* assign slots to fast allocs */
|
||||
b = fn->start;
|
||||
assert(NAlign == 3 && "change n=4 and sz /= 4 below");
|
||||
|
@ -719,4 +724,9 @@ isel(Fn *fn)
|
|||
memcpy(b->ins, curi, n * sizeof b->ins[0]);
|
||||
b->nins = n;
|
||||
}
|
||||
|
||||
if (debug['I']) {
|
||||
fprintf(stderr, "\n> After instruction selection:\n");
|
||||
printfn(fn, stderr);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue