summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZack Rusin <zack@kde.org>2010-11-26 18:13:45 -0500
committerZack Rusin <zack@kde.org>2010-11-26 18:13:45 -0500
commitb85ff431a6ef6c4b4dab447e1ea1fd4eae889612 (patch)
treed21387ae7a92adaef40b240562e68c57a6253ace
parent13ce356ce8a75fa9af8a6b7859bcb110db4d3b33 (diff)
Disable debugging output.HEADmaster
-rw-r--r--src/compiler/compiler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/compiler.cpp b/src/compiler/compiler.cpp
index c41a6cd..bee64b4 100644
--- a/src/compiler/compiler.cpp
+++ b/src/compiler/compiler.cpp
@@ -147,7 +147,7 @@ llvm::Module * Compiler::compile(const std::string &text)
return 0;
module = act->takeModule();
- module->dump();
+ //module->dump();
return module;
}