Skip to content

Commit 90e8cbe

Browse files
committed
Fix field name.
1 parent d2ba9ee commit 90e8cbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc_target/abi/call/xtensa.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ fn classify_arg_ty<Ty>(arg: &mut ArgAbi<'_, Ty>, xlen: u64, fixed: bool, remaini
1919
assert!(*remaining_gpr <= NUM_ARG_GPR, "Arg GPR tracking underflow");
2020

2121
let arg_size = arg.layout.size;
22-
let alignment = arg.layout.details.align.abi;
22+
let alignment = arg.layout.align.abi;
2323

2424
// Determine the number of GPRs needed to pass the current argument
2525
// according to the ABI. 2*XLen-aligned varargs are passed in "aligned"

0 commit comments

Comments
 (0)