clean the command line interface
This commit is contained in:
parent
a5428d33e1
commit
a18e0ef50f
5 changed files with 99 additions and 119 deletions
11
lisc/live.c
11
lisc/live.c
|
@ -93,4 +93,15 @@ Again:
|
|||
chg = 0;
|
||||
goto Again;
|
||||
}
|
||||
|
||||
if (debug['L']) {
|
||||
fprintf(stderr, "\n> Liveness analysis:\n");
|
||||
for (b=f->start; b; b=b->link) {
|
||||
printf("\t%-10s in: ", b->name);
|
||||
dumpts(&b->in, f->tmp, stderr);
|
||||
printf("\t out: ");
|
||||
dumpts(&b->out, f->tmp, stderr);
|
||||
printf("\t nlive: %d\n", b->nlive);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue