From f9447147466178e2ae5aa6507d91b8ff4b5d923f Mon Sep 17 00:00:00 2001 From: chriseth Date: Thu, 10 Sep 2015 12:02:18 +0200 Subject: [PATCH] Transition from bytecode to more general linker objects. --- Compiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Compiler.cpp b/Compiler.cpp index 37fb3c340..f15387894 100644 --- a/Compiler.cpp +++ b/Compiler.cpp @@ -35,7 +35,7 @@ bytes dev::eth::compileLLL(string const& _src, bool _opt, vector* _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;