diff options
author | chriseth <chris@ethereum.org> | 2017-04-28 19:09:48 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2017-04-28 19:14:52 +0800 |
commit | 28f10f4783bd4365654191740069a7112be03d92 (patch) | |
tree | 0a6900822f7c838ba59a0916c90b54c7e7890441 /libsolidity/inlineasm/AsmCodeGen.cpp | |
parent | f9bccab7b744c786f1eb12fad5cc0e499d0f1075 (diff) | |
download | dexon-solidity-28f10f4783bd4365654191740069a7112be03d92.tar.gz dexon-solidity-28f10f4783bd4365654191740069a7112be03d92.tar.zst dexon-solidity-28f10f4783bd4365654191740069a7112be03d92.zip |
Remove error label / invalid jump label.
Diffstat (limited to 'libsolidity/inlineasm/AsmCodeGen.cpp')
-rw-r--r-- | libsolidity/inlineasm/AsmCodeGen.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libsolidity/inlineasm/AsmCodeGen.cpp b/libsolidity/inlineasm/AsmCodeGen.cpp index 9ef3e6e7..c19667b4 100644 --- a/libsolidity/inlineasm/AsmCodeGen.cpp +++ b/libsolidity/inlineasm/AsmCodeGen.cpp @@ -278,8 +278,6 @@ private: { if (_label.id == Scope::Label::unassignedLabelId) _label.id = m_state.newLabelId(); - else if (_label.id == Scope::Label::errorLabelId) - _label.id = size_t(m_state.assembly.errorTag().data()); } |