aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGav Wood <i@gavwood.com>2014-11-01 03:29:38 +0800
committerGav Wood <i@gavwood.com>2014-11-01 03:29:38 +0800
commit577503539e5fe6c06edc3271b0b00d51f82e29c9 (patch)
tree3f46ddc1c4cd251c232622a1e7f53244e85f047f
parent64786387c17fec33e3e9de40387925c10a9dccfb (diff)
downloaddexon-solidity-577503539e5fe6c06edc3271b0b00d51f82e29c9.tar.gz
dexon-solidity-577503539e5fe6c06edc3271b0b00d51f82e29c9.tar.zst
dexon-solidity-577503539e5fe6c06edc3271b0b00d51f82e29c9.zip
Fix for assembler.
-rw-r--r--Assembly.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Assembly.cpp b/Assembly.cpp
index 25895e1b..d4f6c0a7 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:;
}