diff options
Diffstat (limited to 'Compiler.h')
-rw-r--r-- | Compiler.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -29,7 +29,8 @@ namespace eth { std::string parseLLL(std::string const& _src); -bytes compileLLL(std::string const& _s, std::vector<std::string>* _errors = nullptr); +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); } |