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

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