Skip to content

Commit

Permalink
Removed uneeded argument to make_indirect.
Browse files Browse the repository at this point in the history
  • Loading branch information
psumbera committed Jan 18, 2018
1 parent af632bc commit 1203b3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustc_trans/cabi_sparc64.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 1203b3d

Please sign in to comment.