We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1e764c commit c858d34Copy full SHA for c858d34
compiler/rustc_codegen_cranelift/src/abi/comments.rs
@@ -80,15 +80,7 @@ pub(super) fn add_local_place_comments<'tcx>(
80
return;
81
}
82
let TyAndLayout { ty, layout } = place.layout();
83
- let rustc_target::abi::LayoutS {
84
- size,
85
- align,
86
- repr_align: _,
87
- abi: _,
88
- variants: _,
89
- fields: _,
90
- largest_niche: _,
91
- } = layout.0.0;
+ let rustc_target::abi::LayoutS { size, align, .. } = layout.0.0;
92
93
let (kind, extra) = place.debug_comment();
94
0 commit comments