Old code removed

This commit is contained in:
Paweł Bylica 2014-12-04 16:28:47 +01:00
parent 116ce60b1c
commit 408fda8498

View file

@ -1,8 +1,4 @@
#include <llvm/IR/Function.h>
#include <llvm/IR/TypeBuilder.h>
#include <llvm/IR/IntrinsicInst.h>
#include <libdevcrypto/SHA3.h> #include <libdevcrypto/SHA3.h>
#include <libevm/FeeStructure.h> #include <libevm/FeeStructure.h>
#include <libevm/ExtVMFace.h> #include <libevm/ExtVMFace.h>
@ -128,13 +124,6 @@ extern "C"
*o_ret = eth2llvm(u256(code.size())); *o_ret = eth2llvm(u256(code.size()));
} }
void ext_show_bytes(bytesConstRef _bytes)
{
for (auto b : _bytes)
std::cerr << std::hex << std::setw(2) << std::setfill('0') << static_cast<unsigned>(b) << " ";
std::cerr << std::endl;
}
EXPORT void ext_log0(ExtVMFace* _env, i256* _memIdx, i256* _numBytes) EXPORT void ext_log0(ExtVMFace* _env, i256* _memIdx, i256* _numBytes)
{ {
auto memIdx = llvm2eth(*_memIdx).convert_to<size_t>(); auto memIdx = llvm2eth(*_memIdx).convert_to<size_t>();