aboutsummaryrefslogtreecommitdiffstats
path: root/liblll/Compiler.cpp
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-06-15 17:22:47 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-09-11 22:48:52 +0800
commita535a8b06ed1b9c0c5fd41805a4fe39939755f05 (patch)
tree94484019deeef72cc1bab99de51b844647ec6881 /liblll/Compiler.cpp
parent55d2a459a9193024930101c79bbf48af2eb39e2d (diff)
downloaddexon-solidity-a535a8b06ed1b9c0c5fd41805a4fe39939755f05.tar
dexon-solidity-a535a8b06ed1b9c0c5fd41805a4fe39939755f05.tar.gz
dexon-solidity-a535a8b06ed1b9c0c5fd41805a4fe39939755f05.tar.bz2
dexon-solidity-a535a8b06ed1b9c0c5fd41805a4fe39939755f05.tar.lz
dexon-solidity-a535a8b06ed1b9c0c5fd41805a4fe39939755f05.tar.xz
dexon-solidity-a535a8b06ed1b9c0c5fd41805a4fe39939755f05.tar.zst
dexon-solidity-a535a8b06ed1b9c0c5fd41805a4fe39939755f05.zip
Split out the JSON functionality from assembly.stream()
Diffstat (limited to 'liblll/Compiler.cpp')
-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();