diff options
author | chriseth <chris@ethereum.org> | 2018-12-03 18:52:48 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-03 18:52:48 +0800 |
commit | 4b98946e5a6cbc477ca5c61ca0a0dc8c2d1b27ca (patch) | |
tree | bf3b21164feeb37fbb2a48ecef1f13c4c67be7fb /solc/CommandLineInterface.h | |
parent | 04d946669e70be680e7897dcbf2d4e3b6747cc22 (diff) | |
parent | 1cdcdcee656c080b8c6f9e2631bcc2a3c35fb13b (diff) | |
download | dexon-solidity-4b98946e5a6cbc477ca5c61ca0a0dc8c2d1b27ca.tar dexon-solidity-4b98946e5a6cbc477ca5c61ca0a0dc8c2d1b27ca.tar.gz dexon-solidity-4b98946e5a6cbc477ca5c61ca0a0dc8c2d1b27ca.tar.bz2 dexon-solidity-4b98946e5a6cbc477ca5c61ca0a0dc8c2d1b27ca.tar.lz dexon-solidity-4b98946e5a6cbc477ca5c61ca0a0dc8c2d1b27ca.tar.xz dexon-solidity-4b98946e5a6cbc477ca5c61ca0a0dc8c2d1b27ca.tar.zst dexon-solidity-4b98946e5a6cbc477ca5c61ca0a0dc8c2d1b27ca.zip |
Merge pull request #5341 from ethereum/optimizeAssemblyCommandline
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(); |