mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-21 04:06:44 +00:00
Limit debug output
This commit is contained in:
parent
de8deab6ff
commit
6c3af96a40
2 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue