Clean up unnecessary return

This commit is contained in:
Andrew Brown
2020-02-04 09:24:58 -08:00
parent f9ef4948fc
commit 91727d99c0

View File

@@ -2037,5 +2037,5 @@ pub fn wasm_param_types(params: &[ir::AbiParam], is_wasm: impl Fn(usize) -> bool
ret.push(param.value_type); ret.push(param.value_type);
} }
} }
return ret; ret
} }