diff options
author | chriseth <chris@ethereum.org> | 2017-04-25 00:01:04 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2017-04-25 22:49:04 +0800 |
commit | 0ebaf220b51cb281565db232971f63ccdc636df3 (patch) | |
tree | 989e0f4f99e13aad5048749c0f6345cf86fb8b6b /libsolidity/inlineasm/AsmStack.cpp | |
parent | fa467c365ce41201e71631ada43f891e37356870 (diff) | |
download | dexon-solidity-0ebaf220b51cb281565db232971f63ccdc636df3.tar dexon-solidity-0ebaf220b51cb281565db232971f63ccdc636df3.tar.gz dexon-solidity-0ebaf220b51cb281565db232971f63ccdc636df3.tar.bz2 dexon-solidity-0ebaf220b51cb281565db232971f63ccdc636df3.tar.lz dexon-solidity-0ebaf220b51cb281565db232971f63ccdc636df3.tar.xz dexon-solidity-0ebaf220b51cb281565db232971f63ccdc636df3.tar.zst dexon-solidity-0ebaf220b51cb281565db232971f63ccdc636df3.zip |
Fix refactoring error.
Diffstat (limited to 'libsolidity/inlineasm/AsmStack.cpp')
-rw-r--r-- | libsolidity/inlineasm/AsmStack.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libsolidity/inlineasm/AsmStack.cpp b/libsolidity/inlineasm/AsmStack.cpp index 1903de42..65c929c8 100644 --- a/libsolidity/inlineasm/AsmStack.cpp +++ b/libsolidity/inlineasm/AsmStack.cpp @@ -82,8 +82,8 @@ bool InlineAssemblyStack::parseAndAssemble( return false; AsmAnalyzer::Scopes scopes; - AsmAnalyzer analyzer(scopes, m_errors); - solAssert(analyzer.analyze(*m_parserResult), ""); + AsmAnalyzer analyzer(scopes, errors); + solAssert(analyzer.analyze(*parserResult), ""); CodeGenerator(errors).assemble(*parserResult, scopes, _assembly, _identifierAccess); // At this point, the assembly might be messed up, but we should throw an |