mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-21 20:26:41 +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),
|
for (auto it = llvm::po_ext_begin(bb.second.llvm(), visitSet),
|
||||||
end = llvm::po_ext_end(bb.second.llvm(), visitSet); it != end; ++it)
|
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);
|
completePhiNodes(*it);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,6 @@ namespace jit
|
||||||
bytes VM::go(ExtVMFace& _ext)
|
bytes VM::go(ExtVMFace& _ext)
|
||||||
{
|
{
|
||||||
auto module = Compiler().compile(_ext.code);
|
auto module = Compiler().compile(_ext.code);
|
||||||
module->dump();
|
|
||||||
|
|
||||||
ExecutionEngine engine;
|
ExecutionEngine engine;
|
||||||
auto exitCode = engine.run(std::move(module), m_gas, &_ext);
|
auto exitCode = engine.run(std::move(module), m_gas, &_ext);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue