From 23b85cd88d9d1bd4e3130d7c795984e3650471cc Mon Sep 17 00:00:00 2001 From: Matt Pharr Date: Wed, 4 Jan 2012 12:27:27 -0800 Subject: [PATCH] Remove broken debugging code. --- func.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/func.cpp b/func.cpp index 4c8d2222..288f5e44 100644 --- a/func.cpp +++ b/func.cpp @@ -75,13 +75,6 @@ Function::Function(Symbol *s, const std::vector &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) {