diff options
-rw-r--r-- | ExpressionCompiler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ExpressionCompiler.cpp b/ExpressionCompiler.cpp index 4eed68ea..775d59a3 100644 --- a/ExpressionCompiler.cpp +++ b/ExpressionCompiler.cpp @@ -812,8 +812,8 @@ void ExpressionCompiler::LValue::setToZero(Expression const& _expression) const << errinfo_comment("Stack too deep.")); solAssert(stackDiff <= m_size, ""); for (unsigned i = 0; i < m_size; ++i) - *m_context << u256(0) << eth::swapInstruction(stackDiff + (m_size - i) ) << eth::Instruction::POP; - + *m_context << u256(0) << eth::swapInstruction(stackDiff + (m_size - i) ) + << eth::Instruction::POP; break; } case LValue::STORAGE: |