diff options
author | chriseth <chris@ethereum.org> | 2018-11-03 23:05:08 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-12-01 06:39:05 +0800 |
commit | 6c44c5f0c93d6ce623bec773cc151a73d4b12bff (patch) | |
tree | 5a5d79f49211e87737b9c3b74bf40cb1c43e877c /solc/CommandLineInterface.h | |
parent | cc00d8172b6cd7f9fc032e4a21857455ace2f290 (diff) | |
download | dexon-solidity-6c44c5f0c93d6ce623bec773cc151a73d4b12bff.tar dexon-solidity-6c44c5f0c93d6ce623bec773cc151a73d4b12bff.tar.gz dexon-solidity-6c44c5f0c93d6ce623bec773cc151a73d4b12bff.tar.bz2 dexon-solidity-6c44c5f0c93d6ce623bec773cc151a73d4b12bff.tar.lz dexon-solidity-6c44c5f0c93d6ce623bec773cc151a73d4b12bff.tar.xz dexon-solidity-6c44c5f0c93d6ce623bec773cc151a73d4b12bff.tar.zst dexon-solidity-6c44c5f0c93d6ce623bec773cc151a73d4b12bff.zip |
Apply the optimize commandline parameter to assembly mode.
Diffstat (limited to 'solc/CommandLineInterface.h')
-rw-r--r-- | solc/CommandLineInterface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solc/CommandLineInterface.h b/solc/CommandLineInterface.h index 8dc00370..0b22ca29 100644 --- a/solc/CommandLineInterface.h +++ b/solc/CommandLineInterface.h @@ -59,7 +59,7 @@ private: /// @returns the full object with library placeholder hints in hex. static std::string objectWithLinkRefsHex(eth::LinkerObject const& _obj); - bool assemble(AssemblyStack::Language _language, AssemblyStack::Machine _targetMachine); + bool assemble(AssemblyStack::Language _language, AssemblyStack::Machine _targetMachine, bool _optimize); void outputCompilationResults(); |