Skip to content

Commit 77b85ce

Browse files
committed
Fix variable name.
1 parent 2f2183e commit 77b85ce

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
@@ -52,7 +52,7 @@ fn classify_arg_ty<Ty>(arg: &mut ArgAbi<'_, Ty>, xlen: u64, fixed: bool, remaini
5252

5353
// Aggregates which are <= 4 * 32 will be passed in registers if possible,
5454
// so coerce to integers.
55-
if size.bits() as u64 <= MAX_ARG_IN_REGS_SIZE {
55+
if arg_size.bits() as u64 <= MAX_ARG_IN_REGS_SIZE {
5656
// Use a single XLen int if possible, 2*XLen if 2*XLen alignment is
5757
// required, and a 2-element XLen array if only XLen alignment is
5858
// required.

0 commit comments

Comments
 (0)