aboutsummaryrefslogtreecommitdiffstats
path: root/libevmasm
diff options
context:
space:
mode:
authorLeonardo Alt <leo@ethereum.org>2018-08-14 17:41:40 +0800
committerLeonardo Alt <leo@ethereum.org>2018-08-14 18:32:47 +0800
commit17cac588d053429ff74c53fd82648da7c8c55db9 (patch)
tree412051802e1811e77d8254d2085096de4d62463e /libevmasm
parentd01ffd1ad9737a13a7d39e33246d101b36b5cd93 (diff)
downloaddexon-solidity-17cac588d053429ff74c53fd82648da7c8c55db9.tar.gz
dexon-solidity-17cac588d053429ff74c53fd82648da7c8c55db9.tar.zst
dexon-solidity-17cac588d053429ff74c53fd82648da7c8c55db9.zip
Replace safety stop by invalid
Diffstat (limited to 'libevmasm')
-rw-r--r--libevmasm/Assembly.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libevmasm/Assembly.cpp b/libevmasm/Assembly.cpp
index 28ae9577..e49e675d 100644
--- a/libevmasm/Assembly.cpp
+++ b/libevmasm/Assembly.cpp
@@ -617,8 +617,8 @@ LinkerObject const& Assembly::assemble() const
}
if (!m_subs.empty() || !m_data.empty() || !m_auxiliaryData.empty())
- // Append a STOP just to be sure.
- ret.bytecode.push_back(0);
+ // Append an INVALID here to help tests find miscompilation.
+ ret.bytecode.push_back(byte(Instruction::INVALID));
for (size_t i = 0; i < m_subs.size(); ++i)
{