From 1203b3d892b6f8424f6540173e31af1cda304e36 Mon Sep 17 00:00:00 2001 From: Petr Sumbera Date: Thu, 18 Jan 2018 11:03:49 -0800 Subject: [PATCH] Removed uneeded argument to make_indirect. --- src/librustc_trans/cabi_sparc64.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librustc_trans/cabi_sparc64.rs b/src/librustc_trans/cabi_sparc64.rs index 8d5608652874..b3fc6a680611 100644 --- a/src/librustc_trans/cabi_sparc64.rs +++ b/src/librustc_trans/cabi_sparc64.rs @@ -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; }