aboutsummaryrefslogtreecommitdiffstats
path: root/liblll
diff options
context:
space:
mode:
Diffstat (limited to 'liblll')
-rw-r--r--liblll/Compiler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/liblll/Compiler.cpp b/liblll/Compiler.cpp
index 4ec11ca9..f9bd3ab9 100644
--- a/liblll/Compiler.cpp
+++ b/liblll/Compiler.cpp
@@ -76,7 +76,7 @@ std::string dev::eth::compileLLLToAsm(std::string const& _src, bool _opt, std::v
auto assembly = CodeFragment::compile(_src, cs).assembly(cs);
if (_opt)
assembly = assembly.optimise(true);
- assembly.stream(ret);
+ assembly.assemblyStream(ret);
for (auto i: cs.treesToKill)
killBigints(i);
return ret.str();