From 577503539e5fe6c06edc3271b0b00d51f82e29c9 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Fri, 31 Oct 2014 20:29:38 +0100 Subject: [PATCH] Fix for assembler. --- Assembly.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assembly.cpp b/Assembly.cpp index 25895e1b7..d4f6c0a73 100644 --- a/Assembly.cpp +++ b/Assembly.cpp @@ -413,8 +413,8 @@ bytes Assembly::assemble() const break; } case Tag: - ret.push_back((byte)Instruction::JUMPDEST); tagPos[(unsigned)i.m_data] = ret.size(); + ret.push_back((byte)Instruction::JUMPDEST); break; default:; }