aboutsummaryrefslogtreecommitdiffstats
path: root/ExpressionCompiler.cpp
diff options
context:
space:
mode:
authorLiana Husikyan <liana@ethdev.com>2015-05-21 18:10:26 +0800
committerLiana Husikyan <liana@ethdev.com>2015-06-01 19:06:12 +0800
commitce6126094ac0aa6f6eb8158d10534079021a90b9 (patch)
treefbb956bb06eb50870681ceb2aa303900d6008844 /ExpressionCompiler.cpp
parent16a2ffde80c45decae29e4861b7ee9ec5efa62ac (diff)
downloaddexon-solidity-ce6126094ac0aa6f6eb8158d10534079021a90b9.tar.gz
dexon-solidity-ce6126094ac0aa6f6eb8158d10534079021a90b9.tar.zst
dexon-solidity-ce6126094ac0aa6f6eb8158d10534079021a90b9.zip
one more test to test the call of non-existed function
Conflicts: test/libsolidity/SolidityEndToEndTest.cpp
Diffstat (limited to 'ExpressionCompiler.cpp')
-rw-r--r--ExpressionCompiler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ExpressionCompiler.cpp b/ExpressionCompiler.cpp
index c8aece85..ae8bcaee 100644
--- a/ExpressionCompiler.cpp
+++ b/ExpressionCompiler.cpp
@@ -1106,7 +1106,7 @@ void ExpressionCompiler::appendExternalFunctionCall(
//Propagate error condition (if CALL pushes 0 on stack).
m_context << eth::Instruction::ISZERO;
- auto tag = m_context.appendConditionalJumpTo(m_context.errorTag());
+ m_context.appendConditionalJumpTo(m_context.errorTag());
if (_functionType.valueSet())
m_context << eth::Instruction::POP;