diff options
author | Gav Wood <i@gavwood.com> | 2014-05-28 00:51:10 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2014-05-28 00:51:10 +0800 |
commit | 1fdb7a1536209409010c6b6a69aedfce03c8372d (patch) | |
tree | e7911c2048e7e8db2479564c3b2f4ae3c96b18d8 /Compiler.h | |
parent | 7476c6884ee22194b7d363c5e5401773d04bf47d (diff) | |
download | dexon-solidity-1fdb7a1536209409010c6b6a69aedfce03c8372d.tar.gz dexon-solidity-1fdb7a1536209409010c6b6a69aedfce03c8372d.tar.zst dexon-solidity-1fdb7a1536209409010c6b6a69aedfce03c8372d.zip |
Pinhole optimise working fairly well...
Diffstat (limited to 'Compiler.h')
-rw-r--r-- | Compiler.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -29,8 +29,8 @@ namespace eth { std::string parseLLL(std::string const& _src); -std::string compileLLLToAsm(std::string const& _src, std::vector<std::string>* _errors = nullptr); -bytes compileLLL(std::string const& _src, std::vector<std::string>* _errors = nullptr); +std::string compileLLLToAsm(std::string const& _src, bool _opt = true, std::vector<std::string>* _errors = nullptr); +bytes compileLLL(std::string const& _src, bool _opt = true, std::vector<std::string>* _errors = nullptr); } |