diff options
author | chriseth <c@ethdev.com> | 2017-01-26 22:59:48 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2017-01-26 23:39:07 +0800 |
commit | 390bebaaf9e2af51c7e2f72337d1e7b23f51486a (patch) | |
tree | 22df2fec8c35d8c90184ce17a97e84e4f35985bb /libsolidity/codegen | |
parent | ae2b59d18a181bfbcb563b91866611d2e5e55b41 (diff) | |
download | dexon-solidity-390bebaaf9e2af51c7e2f72337d1e7b23f51486a.tar.gz dexon-solidity-390bebaaf9e2af51c7e2f72337d1e7b23f51486a.tar.zst dexon-solidity-390bebaaf9e2af51c7e2f72337d1e7b23f51486a.zip |
Split line.
Diffstat (limited to 'libsolidity/codegen')
-rw-r--r-- | libsolidity/codegen/CompilerContext.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libsolidity/codegen/CompilerContext.cpp b/libsolidity/codegen/CompilerContext.cpp index 3bb6c953..7577a606 100644 --- a/libsolidity/codegen/CompilerContext.cpp +++ b/libsolidity/codegen/CompilerContext.cpp @@ -224,7 +224,9 @@ CompilerContext& CompilerContext::appendConditionalInvalid() { *this << Instruction::ISZERO; eth::AssemblyItem afterTag = appendConditionalJump(); - return *this << Instruction::INVALID << afterTag; + *this << Instruction::INVALID; + *this << afterTag; + return *this; } void CompilerContext::resetVisitedNodes(ASTNode const* _node) |