Split line.

This commit is contained in:
chriseth
2017-01-26 16:39:07 +01:00
parent ae2b59d18a
commit 390bebaaf9
+3 -1
View File
@@ -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)