Limit debug output

This commit is contained in:
Paweł Bylica 2014-10-17 13:26:53 +02:00
parent de8deab6ff
commit 6c3af96a40
2 changed files with 2 additions and 2 deletions

View file

@ -923,7 +923,8 @@ void Compiler::linkBasicBlocks()
for (auto it = llvm::po_ext_begin(bb.second.llvm(), visitSet),
end = llvm::po_ext_end(bb.second.llvm(), visitSet); it != end; ++it)
{
std::cerr << it->getName().str() << std::endl;
// TODO: Use logger
//std::cerr << it->getName().str() << std::endl;
completePhiNodes(*it);
}
}

View file

@ -16,7 +16,6 @@ namespace jit
bytes VM::go(ExtVMFace& _ext)
{
auto module = Compiler().compile(_ext.code);
module->dump();
ExecutionEngine engine;
auto exitCode = engine.run(std::move(module), m_gas, &_ext);