mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Transition from bytecode to more general linker objects.
This commit is contained in:
parent
f47ca4ad14
commit
f944714746
@ -35,7 +35,7 @@ bytes dev::eth::compileLLL(string const& _src, bool _opt, vector<string>* _error
|
|||||||
CompilerState cs;
|
CompilerState cs;
|
||||||
cs.populateStandard();
|
cs.populateStandard();
|
||||||
auto f = CodeFragment::compile(_src, cs);
|
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)
|
for (auto i: cs.treesToKill)
|
||||||
killBigints(i);
|
killBigints(i);
|
||||||
return ret;
|
return ret;
|
||||||
|
Loading…
Reference in New Issue
Block a user