Remove an unnecessary reference

This commit is contained in:
bjorn3 2018-11-24 17:03:53 +01:00
parent 2d4c96d1b1
commit b8d55d45ce

View File

@ -332,7 +332,7 @@ impl MiscMethods<'tcx> for CodegenCx<'ll, 'tcx> {
}
fn get_fn(&self, instance: Instance<'tcx>) -> &'ll Value {
get_fn(&&self,instance)
get_fn(self, instance)
}
fn get_param(&self, llfn: &'ll Value, index: c_uint) -> &'ll Value {