Skip to content

Commit 3a48b93

Browse files
committed
Fix 'no field details on type abi::TyLayout<'_, Ty>' in abi/call/xtensa.rs
1 parent 8859b81 commit 3a48b93

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
@@ -24,7 +24,7 @@ fn classify_arg_ty<Ty>(arg: &mut ArgAbi<'_, Ty>, xlen: u64, remaining_gpr: &mut
2424
return;
2525
}
2626

27-
let alignment = arg.layout.details.align.abi;
27+
let alignment = arg.layout.align.abi;
2828
let mut required_gpr = 1u64; // at least one per arg
2929

3030
if alignment.bits() == 2 * xlen {

0 commit comments

Comments
 (0)