diff options
author | Gav Wood <i@gavwood.com> | 2014-10-08 22:40:46 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2014-10-08 22:40:46 +0800 |
commit | db9b99602e72cccdcb346fb80612a9275ec0a8f8 (patch) | |
tree | 994c3120083abc58091990194dcea3d18292e421 | |
parent | b4865f961bfa946c38545403e515d8825ebb0399 (diff) | |
download | dexon-solidity-db9b99602e72cccdcb346fb80612a9275ec0a8f8.tar.gz dexon-solidity-db9b99602e72cccdcb346fb80612a9275ec0a8f8.tar.zst dexon-solidity-db9b99602e72cccdcb346fb80612a9275ec0a8f8.zip |
According commit for JUMPDEST.
-rw-r--r-- | Assembly.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Assembly.cpp b/Assembly.cpp index 695c9ffa..c26a9a98 100644 --- a/Assembly.cpp +++ b/Assembly.cpp @@ -413,8 +413,8 @@ bytes Assembly::assemble() const break; } case Tag: - tagPos[(unsigned)i.m_data] = ret.size(); ret.push_back((byte)Instruction::JUMPDEST); + tagPos[(unsigned)i.m_data] = ret.size(); break; default:; } |