From 0d200116d3e8188ee7c8c997f31f54cb4d978612 Mon Sep 17 00:00:00 2001 From: Petr Sumbera Date: Mon, 21 Feb 2022 14:23:22 +0100 Subject: [PATCH] formatting fixes --- compiler/rustc_target/src/abi/call/sparc64.rs | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/compiler/rustc_target/src/abi/call/sparc64.rs b/compiler/rustc_target/src/abi/call/sparc64.rs index 822db6d05bb..601b3e7d33b 100644 --- a/compiler/rustc_target/src/abi/call/sparc64.rs +++ b/compiler/rustc_target/src/abi/call/sparc64.rs @@ -194,10 +194,7 @@ where arg.cast_to(CastTarget { prefix: data.prefix, - rest: Uniform { - unit: Reg::i64(), - total: rest_size, - }, + rest: Uniform { unit: Reg::i64(), total: rest_size }, attrs: ArgAttributes { regular: data.arg_attribute, arg_ext: ArgExtension::None, @@ -210,10 +207,7 @@ where } } - arg.cast_to(Uniform { - unit: Reg::i64(), - total, - }); + arg.cast_to(Uniform { unit: Reg::i64(), total }); } pub fn compute_abi_info<'a, Ty, C>(cx: &C, fn_abi: &mut FnAbi<'a, Ty>)