aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/codegen/CompilerContext.cpp
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-06-26 18:51:12 +0800
committerGitHub <noreply@github.com>2017-06-26 18:51:12 +0800
commita0b0df2d98f7d4c60fe9fb9e79739c0c09b94365 (patch)
treeb8e4cd938ada219278e3c0ea5509b4ef0a793bdd /libsolidity/codegen/CompilerContext.cpp
parentc328ab411b63fe182125e976eb05b4449fdd892d (diff)
parent5a75581f6643a229ab12a861d0b0663ea3e5158e (diff)
downloaddexon-solidity-a0b0df2d98f7d4c60fe9fb9e79739c0c09b94365.tar
dexon-solidity-a0b0df2d98f7d4c60fe9fb9e79739c0c09b94365.tar.gz
dexon-solidity-a0b0df2d98f7d4c60fe9fb9e79739c0c09b94365.tar.bz2
dexon-solidity-a0b0df2d98f7d4c60fe9fb9e79739c0c09b94365.tar.lz
dexon-solidity-a0b0df2d98f7d4c60fe9fb9e79739c0c09b94365.tar.xz
dexon-solidity-a0b0df2d98f7d4c60fe9fb9e79739c0c09b94365.tar.zst
dexon-solidity-a0b0df2d98f7d4c60fe9fb9e79739c0c09b94365.zip
Merge pull request #2460 from ethereum/disallowMultiModifier
Disallow invoking the same modifier multiple times.
Diffstat (limited to 'libsolidity/codegen/CompilerContext.cpp')
-rw-r--r--libsolidity/codegen/CompilerContext.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/libsolidity/codegen/CompilerContext.cpp b/libsolidity/codegen/CompilerContext.cpp
index 1937b529..6875bda1 100644
--- a/libsolidity/codegen/CompilerContext.cpp
+++ b/libsolidity/codegen/CompilerContext.cpp
@@ -124,6 +124,7 @@ void CompilerContext::addVariable(VariableDeclaration const& _declaration,
unsigned _offsetToCurrent)
{
solAssert(m_asm->deposit() >= 0 && unsigned(m_asm->deposit()) >= _offsetToCurrent, "");
+ solAssert(m_localVariables.count(&_declaration) == 0, "Variable already present");
m_localVariables[&_declaration] = unsigned(m_asm->deposit()) - _offsetToCurrent;
}