From 957f4558c47f2288e9795b0b7a8a37b75efc2031 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Bylica?= Date: Wed, 1 Jul 2015 16:14:53 +0200 Subject: [PATCH] Cleanups. --- libevmjit/Compiler.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/libevmjit/Compiler.cpp b/libevmjit/Compiler.cpp index e51df0245..a44e4e890 100644 --- a/libevmjit/Compiler.cpp +++ b/libevmjit/Compiler.cpp @@ -51,10 +51,8 @@ void Compiler::createBasicBlocks(code_iterator _codeBegin, code_iterator _codeEn // Skip all STOPs in the end for (; _codeEnd != _codeBegin; --_codeEnd) - { if (*(_codeEnd - 1) != static_cast(Instruction::STOP)) break; - } auto begin = _codeBegin; // begin of current block bool nextJumpDest = false; @@ -977,4 +975,3 @@ void Compiler::dump() } } } -