Split line.

This commit is contained in:
chriseth 2017-01-26 15:59:48 +01:00
parent ae2b59d18a
commit 390bebaaf9

View File

@ -224,7 +224,9 @@ CompilerContext& CompilerContext::appendConditionalInvalid()
{ {
*this << Instruction::ISZERO; *this << Instruction::ISZERO;
eth::AssemblyItem afterTag = appendConditionalJump(); eth::AssemblyItem afterTag = appendConditionalJump();
return *this << Instruction::INVALID << afterTag; *this << Instruction::INVALID;
*this << afterTag;
return *this;
} }
void CompilerContext::resetVisitedNodes(ASTNode const* _node) void CompilerContext::resetVisitedNodes(ASTNode const* _node)