Browse Source

fixed mistake because of conflict resolving

cl-refactor
Liana Husikyan 10 years ago
parent
commit
fb564b222d
  1. 7
      libsolidity/ExpressionCompiler.cpp

7
libsolidity/ExpressionCompiler.cpp

@ -1102,10 +1102,11 @@ void ExpressionCompiler::appendExternalFunctionCall(
)
m_context << eth::Instruction::CALLCODE;
else
{
m_context << eth::Instruction::CALL << eth::Instruction::ISZERO;
m_context << eth::Instruction::CALL;
m_context << eth::Instruction::ISZERO;
auto tag = m_context.appendConditionalJumpTo(m_context.errorTag());// if CALL leaves 0.
}
if (_functionType.valueSet())
m_context << eth::Instruction::POP;
if (_functionType.gasSet())

Loading…
Cancel
Save