# HG changeset patch # User Frits van Bommel # Date 1240178675 -7200 # Node ID a16b587aab58d256fc8b1a8369d7224f92ba42b1 # Parent 00f377e03423500595eeac40422ab1879efd7625 Remove some logging I didn't mean to commit. diff -r 00f377e03423 -r a16b587aab58 gen/functions.cpp --- a/gen/functions.cpp Sun Apr 19 23:15:03 2009 +0200 +++ b/gen/functions.cpp Mon Apr 20 00:04:35 2009 +0200 @@ -171,10 +171,6 @@ // If the function type was forward referenced by one of the parameter types, // it has now been set. if (f->ir.type) { - for (size_t i = 0; i < fty.args.size(); i++) { - Logger::cout() << "Arg type: " << *fty.args[i]->ltype << '\n'; - } - // Notify ABI that we won't be needing it for this function type anymore. gABI->doneWithFunctionType(); @@ -189,7 +185,7 @@ delete *It; } - Logger::cout() << "Function type: " << **f->ir.type << '\n'; + Logger::cout() << "Final function type: " << **f->ir.type << '\n'; return llvm::cast(*f->ir.type); }