aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/inlineasm/AsmAnalysis.h
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2017-05-29 22:52:51 +0800
committerGitHub <noreply@github.com>2017-05-29 22:52:51 +0800
commit8b29cc55357b4eec12c771707ed4025d11ca4365 (patch)
tree7474badc8dfe8d7685b560ab9e9d5be1e50323dc /libsolidity/inlineasm/AsmAnalysis.h
parent9822deeed9d0be1324d6b6bdbdf83ae7ebca9b69 (diff)
parent4af55c78ebcacb5cfda1b573253cac6e6824d67a (diff)
downloaddexon-solidity-8b29cc55357b4eec12c771707ed4025d11ca4365.tar
dexon-solidity-8b29cc55357b4eec12c771707ed4025d11ca4365.tar.gz
dexon-solidity-8b29cc55357b4eec12c771707ed4025d11ca4365.tar.bz2
dexon-solidity-8b29cc55357b4eec12c771707ed4025d11ca4365.tar.lz
dexon-solidity-8b29cc55357b4eec12c771707ed4025d11ca4365.tar.xz
dexon-solidity-8b29cc55357b4eec12c771707ed4025d11ca4365.tar.zst
dexon-solidity-8b29cc55357b4eec12c771707ed4025d11ca4365.zip
Merge pull request #2319 from ethereum/virtualBlocks
Introduce virtual blocks for function arguments.
Diffstat (limited to 'libsolidity/inlineasm/AsmAnalysis.h')
-rw-r--r--libsolidity/inlineasm/AsmAnalysis.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/libsolidity/inlineasm/AsmAnalysis.h b/libsolidity/inlineasm/AsmAnalysis.h
index 87d41e11..14b18c4a 100644
--- a/libsolidity/inlineasm/AsmAnalysis.h
+++ b/libsolidity/inlineasm/AsmAnalysis.h
@@ -91,10 +91,6 @@ private:
Scope& scope(assembly::Block const* _block);
void expectValidType(std::string const& type, SourceLocation const& _location);
- /// This is used when we enter the body of a function definition. There, the parameters
- /// and return parameters appear as variables which are already on the stack before
- /// we enter the block.
- int m_virtualVariablesInNextBlock = 0;
int m_stackHeight = 0;
julia::ExternalIdentifierAccess::Resolver const& m_resolver;
Scope* m_currentScope = nullptr;