diff options
| author | Petr Sumbera <petr.sumbera@oracle.com> | 2022-02-21 14:23:22 +0100 |
|---|---|---|
| committer | Petr Sumbera <petr.sumbera@oracle.com> | 2022-02-21 14:23:22 +0100 |
| commit | 0d200116d3e8188ee7c8c997f31f54cb4d978612 (patch) | |
| tree | 1e4a88d94d15092390d657cfebf32b15f873c5b4 | |
| parent | a29477c9ca059112ab8da087976b1d43a8556410 (diff) | |
| download | rust-0d200116d3e8188ee7c8c997f31f54cb4d978612.tar.gz rust-0d200116d3e8188ee7c8c997f31f54cb4d978612.zip | |
formatting fixes
| -rw-r--r-- | compiler/rustc_target/src/abi/call/sparc64.rs | 10 |
1 files 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>) |
