about summary refs log tree commit diff
diff options
context:
space:
mode:
authorErik Desjardins <erikdesjardins@users.noreply.github.com>2023-06-11 17:05:26 -0400
committerErik Desjardins <erikdesjardins@users.noreply.github.com>2023-07-10 19:19:40 -0400
commit6f16da3ee782a4c293435196bd3474a87bdf9851 (patch)
tree53054c27380affa403906f8f61493fa004805026
parentd2d76ef358f81f6ef68c732c0bf0e0353896efad (diff)
downloadrust-6f16da3ee782a4c293435196bd3474a87bdf9851.tar.gz
rust-6f16da3ee782a4c293435196bd3474a87bdf9851.zip
repr(align) <= 4 should still be byval
-rw-r--r--src/abi/comments.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/abi/comments.rs b/src/abi/comments.rs
index f1ada7b7219..97f8452a468 100644
--- a/src/abi/comments.rs
+++ b/src/abi/comments.rs
@@ -83,7 +83,7 @@ pub(super) fn add_local_place_comments<'tcx>(
     let rustc_target::abi::LayoutS {
         size,
         align,
-        has_repr_align: _,
+        repr_align: _,
         abi: _,
         variants: _,
         fields: _,