about summary refs log tree commit diff
path: root/compiler/rustc_codegen_gcc
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2022-08-25 19:18:01 +1000
committerNicholas Nethercote <n.nethercote@gmail.com>2022-08-26 10:53:41 +1000
commitb853e8a6194637751bffbcfdd5bb51c7bfecdff5 (patch)
tree2c15425811ff1409c2ee32eb0f47b0d046bdce68 /compiler/rustc_codegen_gcc
parentfeeaa4db3cb990463871e35b16b3449023cb791d (diff)
downloadrust-b853e8a6194637751bffbcfdd5bb51c7bfecdff5.tar.gz
rust-b853e8a6194637751bffbcfdd5bb51c7bfecdff5.zip
Turn `ArgAbi::pad` into a `bool`.
Because it's only ever set to `None` or `Some(Reg::i32())`.
Diffstat (limited to 'compiler/rustc_codegen_gcc')
-rw-r--r--compiler/rustc_codegen_gcc/src/abi.rs4
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 87b730d29cd..3186b363e35 100644
--- a/compiler/rustc_codegen_gcc/src/abi.rs
+++ b/compiler/rustc_codegen_gcc/src/abi.rs
@@ -126,8 +126,8 @@ impl<'gcc, 'tcx> FnAbiGccExt<'gcc, 'tcx> for FnAbi<'tcx, Ty<'tcx>> {
 
         for arg in self.args.iter() {
             // add padding
-            if let Some(ty) = arg.pad {
-                argument_tys.push(ty.gcc_type(cx));
+            if arg.pad_i32 {
+                argument_tys.push(Reg::i32().gcc_type(cx));
             }
 
             let arg_ty = match arg.mode {