aboutsummaryrefslogtreecommitdiffstats
path: root/Compiler.h
diff options
context:
space:
mode:
authorGav Wood <i@gavwood.com>2014-05-28 00:51:10 +0800
committerGav Wood <i@gavwood.com>2014-05-28 00:51:10 +0800
commit1fdb7a1536209409010c6b6a69aedfce03c8372d (patch)
treee7911c2048e7e8db2479564c3b2f4ae3c96b18d8 /Compiler.h
parent7476c6884ee22194b7d363c5e5401773d04bf47d (diff)
downloaddexon-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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Compiler.h b/Compiler.h
index 9dd5fc29..395d7909 100644
--- a/Compiler.h
+++ b/Compiler.h
@@ -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);
}