Remove broken debugging code.

This commit is contained in:
Matt Pharr
2012-01-04 12:27:27 -08:00
parent 234e5cd3e1
commit 23b85cd88d

View File

@@ -75,13 +75,6 @@ Function::Function(Symbol *s, const std::vector<Symbol *> &a, Stmt *c) {
Assert(maskSymbol != NULL);
if (code != NULL) {
if (g->debugPrint) {
fprintf(stderr, "Creating function \"%s\". Initial code:\n",
sym->name.c_str());
code->Print(0);
fprintf(stderr, "---------------------\n");
}
code = TypeCheck(code);
if (code != NULL && g->debugPrint) {