From bbfb16cf5ce903150bc3a141ac50553d8bf6d346 Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Wed, 30 Aug 2017 02:17:15 +0100 Subject: Introduce assemblyString --- solc/CommandLineInterface.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'solc') diff --git a/solc/CommandLineInterface.cpp b/solc/CommandLineInterface.cpp index 560dc98b..32c61585 100644 --- a/solc/CommandLineInterface.cpp +++ b/solc/CommandLineInterface.cpp @@ -1156,9 +1156,8 @@ void CommandLineInterface::outputCompilationResults() } else { - stringstream data; - m_compiler->assemblyStream(data, contract, m_sourceCodes); - createFile(m_compiler->filesystemFriendlyName(contract) + ".evm", data.str()); + string ret = m_compiler->assemblyString(contract, m_sourceCodes); + createFile(m_compiler->filesystemFriendlyName(contract) + ".evm", ret)); } } else @@ -1167,7 +1166,7 @@ void CommandLineInterface::outputCompilationResults() if (m_args.count(g_argAsmJson) cout << m_compiler->assemblyJSON(contract, m_sourceCodes); else - m_compiler->assemblyStream(cout, contract, m_sourceCodes); + cout << m_compiler->assemblyString(contract, m_sourceCodes); } } -- cgit v1.2.3