From 60993a5e474244a3f4f623bb81d5191f2ec50993 Mon Sep 17 00:00:00 2001 From: Matthias Andreas Benkard Date: Mon, 18 Aug 2008 01:20:58 +0200 Subject: LLVM compiler: Disable debugging messages. --- MLKLLVMCompiler.mm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'MLKLLVMCompiler.mm') diff --git a/MLKLLVMCompiler.mm b/MLKLLVMCompiler.mm index ae0c083..a7efa12 100644 --- a/MLKLLVMCompiler.mm +++ b/MLKLLVMCompiler.mm @@ -135,15 +135,15 @@ static Constant // JIT-compile. fn = (id (*)()) execution_engine->getPointerToFunction (function); //module->dump(); - NSLog (@"%p", fn); + //NSLog (@"%p", fn); [pool release]; - NSLog (@"Code compiled."); + //NSLog (@"Code compiled."); // Execute. lambdaForm = fn(); - NSLog (@"Closure built."); + //NSLog (@"Closure built."); return lambdaForm; } @@ -586,7 +586,7 @@ static Constant builder.CreateRet (value); - function->dump(); + //function->dump(); //NSLog (@"Verify..."); verifyFunction (*function); //NSLog (@"Optimise..."); @@ -596,7 +596,7 @@ static Constant // the function. execution_engine->getPointerToFunction (function); //NSLog (@"Done."); - function->dump(); + //function->dump(); //NSLog (@"Function built."); builder.SetInsertPoint (outerBlock); -- cgit v1.2.3