Browse Source

Remove logs

cl-refactor
Paweł Bylica 10 years ago
parent
commit
91cd37e98d
  1. 4
      libevmjit/Runtime.cpp

4
libevmjit/Runtime.cpp

@ -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…
Cancel
Save