Removed uneeded argument to make_indirect.

This commit is contained in:
Petr Sumbera 2018-01-18 11:03:49 -08:00
parent af632bc1c5
commit 1203b3d892

View file

@ -85,7 +85,7 @@ fn classify_arg_ty<'a, 'tcx>(cx: &CodegenCx<'a, 'tcx>, arg: &mut ArgType<'tcx>)
let total = arg.layout.size;
if total.bits() > 128 {
arg.make_indirect(cx);
arg.make_indirect();
return;
}