diff options
-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 |