aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/inlineasm/AsmStack.cpp
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2017-04-25 00:01:04 +0800
committerchriseth <chris@ethereum.org>2017-04-25 22:49:04 +0800
commit0ebaf220b51cb281565db232971f63ccdc636df3 (patch)
tree989e0f4f99e13aad5048749c0f6345cf86fb8b6b /libsolidity/inlineasm/AsmStack.cpp
parentfa467c365ce41201e71631ada43f891e37356870 (diff)
downloaddexon-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.cpp4
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