mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Properly outputing opcodes in solc, using normal stream operator
This commit is contained in:
parent
40b4740b43
commit
d9f0160a41
@ -122,19 +122,18 @@ void CommandLineInterface::handleBinary(string const& _contract)
|
|||||||
|
|
||||||
void CommandLineInterface::handleOpcode(string const& _contract)
|
void CommandLineInterface::handleOpcode(string const& _contract)
|
||||||
{
|
{
|
||||||
// TODO: Figure out why the wrong operator << (from boost) is used here
|
|
||||||
auto choice = m_args[ARG_OPCODES_STR].as<OutputType>();
|
auto choice = m_args[ARG_OPCODES_STR].as<OutputType>();
|
||||||
if (outputToStdout(choice))
|
if (outputToStdout(choice))
|
||||||
{
|
{
|
||||||
cout << "Opcodes: " << endl;
|
cout << "Opcodes: " << endl;
|
||||||
dev::operator<<(cout, m_compiler.getBytecode(_contract));
|
cout << eth::disassemble(m_compiler.getBytecode(_contract));
|
||||||
cout << endl;
|
cout << endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (outputToFile(choice))
|
if (outputToFile(choice))
|
||||||
{
|
{
|
||||||
ofstream outFile(_contract + ".opcode");
|
ofstream outFile(_contract + ".opcode");
|
||||||
dev::operator<<(outFile, m_compiler.getBytecode(_contract));
|
outFile << eth::disassemble(m_compiler.getBytecode(_contract));
|
||||||
outFile.close();
|
outFile.close();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user