diff options
author | Paweł Bylica <pawel.bylica@imapp.pl> | 2015-03-06 22:34:02 +0800 |
---|---|---|
committer | Paweł Bylica <pawel.bylica@imapp.pl> | 2015-03-06 22:34:02 +0800 |
commit | dec565f882d2240e9fe967e63f3af30708d10989 (patch) | |
tree | 7be7847259188a9a8c5a7fb1f2187f266c7ccacf /CommandLineInterface.cpp | |
parent | 5d95bd7c20466315b9fcdccbc944a536e04cf807 (diff) | |
parent | 665edd3f8648e227dfe196a60162a7ff8e16f45c (diff) | |
download | dexon-solidity-dec565f882d2240e9fe967e63f3af30708d10989.tar dexon-solidity-dec565f882d2240e9fe967e63f3af30708d10989.tar.gz dexon-solidity-dec565f882d2240e9fe967e63f3af30708d10989.tar.bz2 dexon-solidity-dec565f882d2240e9fe967e63f3af30708d10989.tar.lz dexon-solidity-dec565f882d2240e9fe967e63f3af30708d10989.tar.xz dexon-solidity-dec565f882d2240e9fe967e63f3af30708d10989.tar.zst dexon-solidity-dec565f882d2240e9fe967e63f3af30708d10989.zip |
Merge remote-tracking branch 'upstream/develop' into evmjit
Diffstat (limited to 'CommandLineInterface.cpp')
-rw-r--r-- | CommandLineInterface.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CommandLineInterface.cpp b/CommandLineInterface.cpp index db12231a..08acb5eb 100644 --- a/CommandLineInterface.cpp +++ b/CommandLineInterface.cpp @@ -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(); } } |