aboutsummaryrefslogtreecommitdiffstats
path: root/Compiler.h
diff options
context:
space:
mode:
Diffstat (limited to 'Compiler.h')
-rw-r--r--Compiler.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Compiler.h b/Compiler.h
index e58e12ba..9dd5fc29 100644
--- a/Compiler.h
+++ b/Compiler.h
@@ -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);
}