From b98725861d5c942677f35a32a1f49b855f45e188 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Bylica?= Date: Thu, 4 Dec 2014 21:05:40 +0100 Subject: [PATCH] A TODO comment --- libevmjit/Memory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libevmjit/Memory.cpp b/libevmjit/Memory.cpp index 1f31dff72..d87c76035 100644 --- a/libevmjit/Memory.cpp +++ b/libevmjit/Memory.cpp @@ -211,7 +211,7 @@ extern "C" { using namespace dev::eth::jit; - EXPORT byte* mem_resize(Runtime* _rt, i256* _size) + EXPORT byte* mem_resize(Runtime* _rt, i256* _size) // TODO: Use uint64 as size OR use realloc in LLVM IR { auto size = _size->a; // Trunc to 64-bit auto& memory = _rt->getMemory();