diff options
| author | Petr Sumbera <petr.sumbera@oracle.com> | 2021-12-01 10:03:45 +0100 |
|---|---|---|
| committer | Petr Sumbera <petr.sumbera@oracle.com> | 2021-12-01 10:03:45 +0100 |
| commit | 128ceec92d04a9b4feaf55804f5e7d1f3f1dbfd2 (patch) | |
| tree | afa1955bbcb51551f1f90ee250ed5f70cab58659 /compiler/rustc_codegen_gcc/src | |
| parent | 6414e0b5b308d3ae27da83c6a25098cc8aadc1a9 (diff) | |
| download | rust-128ceec92d04a9b4feaf55804f5e7d1f3f1dbfd2.tar.gz rust-128ceec92d04a9b4feaf55804f5e7d1f3f1dbfd2.zip | |
fix sparc64 ABI for aggregates with floating point members
Diffstat (limited to 'compiler/rustc_codegen_gcc/src')
| -rw-r--r-- | compiler/rustc_codegen_gcc/src/abi.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_codegen_gcc/src/abi.rs b/compiler/rustc_codegen_gcc/src/abi.rs index ce428c589a4..f1b9c310e72 100644 --- a/compiler/rustc_codegen_gcc/src/abi.rs +++ b/compiler/rustc_codegen_gcc/src/abi.rs @@ -48,8 +48,8 @@ impl GccType for CastTarget { let mut args: Vec<_> = self .prefix .iter() - .flat_map(|option_kind| { - option_kind.map(|kind| Reg { kind, size: self.prefix_chunk_size }.gcc_type(cx)) + .flat_map(|option_reg| { + option_reg.map(|reg| reg.gcc_type(cx)) }) .chain((0..rest_count).map(|_| rest_gcc_unit)) .collect(); |
