diff options
author | chriseth <chris@ethereum.org> | 2016-12-01 22:14:31 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-01 22:14:31 +0800 |
commit | 55a719a79c1ab5b78ea6e1bcb4f27a888494a538 (patch) | |
tree | ceb3fbab0eb902fcd1a728cb10efe89ca825debc /libsolidity/codegen/ContractCompiler.cpp | |
parent | 1367aef83b91f2cf9f28faf54fa61f0594e3b9dc (diff) | |
parent | 422140f60369a2e69c6cb446528737d5d23a3e3d (diff) | |
download | dexon-solidity-55a719a79c1ab5b78ea6e1bcb4f27a888494a538.tar.gz dexon-solidity-55a719a79c1ab5b78ea6e1bcb4f27a888494a538.tar.zst dexon-solidity-55a719a79c1ab5b78ea6e1bcb4f27a888494a538.zip |
Merge pull request #1462 from ethereum/fix-incorrect-assertion
codegen: assertion did not assert non-nullness
Diffstat (limited to 'libsolidity/codegen/ContractCompiler.cpp')
-rw-r--r-- | libsolidity/codegen/ContractCompiler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/codegen/ContractCompiler.cpp b/libsolidity/codegen/ContractCompiler.cpp index 93083e25..a0f196bc 100644 --- a/libsolidity/codegen/ContractCompiler.cpp +++ b/libsolidity/codegen/ContractCompiler.cpp @@ -583,7 +583,7 @@ bool ContractCompiler::visit(InlineAssembly const& _inlineAssembly) // lvalue context auto variable = dynamic_cast<VariableDeclaration const*>(decl); solAssert( - !!variable || !m_context.isLocalVariable(variable), + !!variable && m_context.isLocalVariable(variable), "Can only assign to stack variables in inline assembly." ); unsigned size = variable->type()->sizeOnStack(); |