Clean out the old debug prints from emit_function()

This commit is contained in:
Bill Currie 2011-02-07 08:46:12 +09:00
parent 76034861c9
commit d564e6f017

View file

@ -646,19 +646,9 @@ void
emit_function (function_t *f, expr_t *e)
{
sblock_t *sblock;
//statement_t *s;
f->code = pr.code->size;
//printf ("%s %d\n", f->name, f->code);
sblock = make_statements (e);
//for (/**/; sblock; sblock = sblock->next) {
// printf ("block %p\n", sblock);
// for (s = sblock->statements; s; s = s->next) {
// printf (" ");
// print_statement (s);
// }
//}
emit_statements (sblock);
}