fix(clif-backend) Remove an unused variable declaration.

The `compiled_functions` variable is declared twice. The first
declaration is never used. This patch removes it.
This commit is contained in:
Ivan Enderlin 2019-03-04 13:59:37 +01:00
parent 0c62693163
commit 42c9bdf8c2

View File

@ -94,7 +94,6 @@ impl FuncResolverBuilder {
info: &ModuleInfo,
) -> CompileResult<(Self, HandlerData)> {
let num_func_bodies = function_bodies.len();
let mut compiled_functions: Vec<(Vec<u8>, RelocSink)> = Vec::with_capacity(num_func_bodies);
let mut local_relocs = Map::with_capacity(num_func_bodies);
let mut external_relocs = Map::with_capacity(num_func_bodies);