changeset 1227:a16b587aab58

Remove some logging I didn't mean to commit.
author Frits van Bommel <fvbommel wxs.nl>
date Mon, 20 Apr 2009 00:04:35 +0200
parents 00f377e03423
children 01909bd1132c
files gen/functions.cpp
diffstat 1 files changed, 1 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- 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<LLFunctionType>(*f->ir.type);
     }