mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-22 04:36:42 +00:00
Remove logs
This commit is contained in:
parent
47d92e933a
commit
91cd37e98d
1 changed files with 0 additions and 4 deletions
|
|
@ -5,8 +5,6 @@
|
||||||
#include <llvm/IR/Function.h>
|
#include <llvm/IR/Function.h>
|
||||||
#include <llvm/IR/IntrinsicInst.h>
|
#include <llvm/IR/IntrinsicInst.h>
|
||||||
|
|
||||||
#include <iostream>
|
|
||||||
|
|
||||||
namespace dev
|
namespace dev
|
||||||
{
|
{
|
||||||
namespace eth
|
namespace eth
|
||||||
|
|
@ -30,12 +28,10 @@ Runtime::Runtime(RuntimeData* _data, Env* _env):
|
||||||
m_prevJmpBuf(g_currJmpBuf)
|
m_prevJmpBuf(g_currJmpBuf)
|
||||||
{
|
{
|
||||||
g_currJmpBuf = m_jmpBuf;
|
g_currJmpBuf = m_jmpBuf;
|
||||||
std::cerr << "JB push " << g_currJmpBuf << "\n";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Runtime::~Runtime()
|
Runtime::~Runtime()
|
||||||
{
|
{
|
||||||
std::cerr << "JB pop " << g_currJmpBuf << "\n";
|
|
||||||
g_currJmpBuf = m_prevJmpBuf;
|
g_currJmpBuf = m_prevJmpBuf;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue