mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge remote-tracking branch 'upstream/develop' into evmjit
This commit is contained in:
commit
dec565f882
@ -424,13 +424,13 @@ void CommandLineInterface::actOnInput()
|
||||
if (outputToStdout(choice))
|
||||
{
|
||||
cout << "EVM assembly:" << endl;
|
||||
m_compiler->streamAssembly(cout, contract);
|
||||
m_compiler->streamAssembly(cout, contract, m_sourceCodes);
|
||||
}
|
||||
|
||||
if (outputToFile(choice))
|
||||
{
|
||||
ofstream outFile(contract + ".evm");
|
||||
m_compiler->streamAssembly(outFile, contract);
|
||||
m_compiler->streamAssembly(outFile, contract, m_sourceCodes);
|
||||
outFile.close();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user