diff options
author | chriseth <chris@ethereum.org> | 2017-02-07 19:26:02 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-07 19:26:02 +0800 |
commit | 94e5ab1e43adc3071941130b7652eb3b5f32c9f2 (patch) | |
tree | f5172d8e58f5a70043ba0e93911fdff7a7f7f8b3 /libsolidity/codegen | |
parent | e5e0eae057816c6ed7f53a3972b7dff3032348ea (diff) | |
parent | 277415be30588e9694552c43bdbc70cc93aab94a (diff) | |
download | dexon-solidity-94e5ab1e43adc3071941130b7652eb3b5f32c9f2.tar dexon-solidity-94e5ab1e43adc3071941130b7652eb3b5f32c9f2.tar.gz dexon-solidity-94e5ab1e43adc3071941130b7652eb3b5f32c9f2.tar.bz2 dexon-solidity-94e5ab1e43adc3071941130b7652eb3b5f32c9f2.tar.lz dexon-solidity-94e5ab1e43adc3071941130b7652eb3b5f32c9f2.tar.xz dexon-solidity-94e5ab1e43adc3071941130b7652eb3b5f32c9f2.tar.zst dexon-solidity-94e5ab1e43adc3071941130b7652eb3b5f32c9f2.zip |
Merge branch 'develop' into docs-version
Diffstat (limited to 'libsolidity/codegen')
-rw-r--r-- | libsolidity/codegen/ExpressionCompiler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/codegen/ExpressionCompiler.cpp b/libsolidity/codegen/ExpressionCompiler.cpp index b66a3e12..d74d9dd3 100644 --- a/libsolidity/codegen/ExpressionCompiler.cpp +++ b/libsolidity/codegen/ExpressionCompiler.cpp @@ -648,7 +648,7 @@ bool ExpressionCompiler::visit(FunctionCall const& _functionCall) case Location::Selfdestruct: arguments.front()->accept(*this); utils().convertType(*arguments.front()->annotation().type, *function.parameterTypes().front(), true); - m_context << Instruction::SUICIDE; + m_context << Instruction::SELFDESTRUCT; break; case Location::SHA3: { |