diff options
author | Liana Husikyan <liana@ethdev.com> | 2015-05-30 00:38:57 +0800 |
---|---|---|
committer | Liana Husikyan <liana@ethdev.com> | 2015-06-01 19:06:12 +0800 |
commit | 9af94ca0dc8e62d8cfe04a8b127522e5874e312d (patch) | |
tree | bd67b1ace8eaad01267dafa9aeab011c9462fd18 /ExpressionCompiler.cpp | |
parent | ccb194fd39781c7b1083615eb21c9d9cc80d4d54 (diff) | |
download | dexon-solidity-9af94ca0dc8e62d8cfe04a8b127522e5874e312d.tar.gz dexon-solidity-9af94ca0dc8e62d8cfe04a8b127522e5874e312d.tar.zst dexon-solidity-9af94ca0dc8e62d8cfe04a8b127522e5874e312d.zip |
style fixes
Diffstat (limited to 'ExpressionCompiler.cpp')
-rw-r--r-- | ExpressionCompiler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ExpressionCompiler.cpp b/ExpressionCompiler.cpp index d618c631..6a246f44 100644 --- a/ExpressionCompiler.cpp +++ b/ExpressionCompiler.cpp @@ -1035,7 +1035,7 @@ void ExpressionCompiler::appendHighBitsCleanup(IntegerType const& _typeOnStack) void ExpressionCompiler::appendExternalFunctionCall( FunctionType const& _functionType, vector<ASTPointer<Expression const>> const& _arguments - ) +) { solAssert(_functionType.takesArbitraryParameters() || _arguments.size() == _functionType.getParameterTypes().size(), ""); @@ -1106,7 +1106,7 @@ void ExpressionCompiler::appendExternalFunctionCall( //Propagate error condition (if CALL pushes 0 on stack). auto tag = m_context.appendConditionalJump(); - m_context << eth::Instruction::STOP << tag; // STOP if CALL leaves 0.// } + m_context << eth::Instruction::STOP << tag; // STOP if CALL leaves 0. if (_functionType.valueSet()) m_context << eth::Instruction::POP; |