Transition from bytecode to more general linker objects.

This commit is contained in:
chriseth 2015-09-10 12:02:18 +02:00
parent f47ca4ad14
commit f944714746

View File

@ -35,7 +35,7 @@ bytes dev::eth::compileLLL(string const& _src, bool _opt, vector<string>* _error
CompilerState cs;
cs.populateStandard();
auto f = CodeFragment::compile(_src, cs);
bytes ret = f.assembly(cs).optimise(_opt).assemble();
bytes ret = f.assembly(cs).optimise(_opt).assemble().bytecode;
for (auto i: cs.treesToKill)
killBigints(i);
return ret;