clean the command line interface

This commit is contained in:
Quentin Carbonneaux 2015-10-05 15:57:04 -04:00
parent a5428d33e1
commit a18e0ef50f
5 changed files with 99 additions and 119 deletions

View file

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