about summary refs log tree commit diff
path: root/compiler/rustc_codegen_cranelift/src
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
commit7e933b4e26947b04da70589110dacbdb2461e27d (patch)
tree63b501c66626cdf9b1853eaa27e4c5159083fa46 /compiler/rustc_codegen_cranelift/src
parent2591c30eaf30425812f42beb47bd2615a533e961 (diff)
downloadrust-7e933b4e26947b04da70589110dacbdb2461e27d.tar.gz
rust-7e933b4e26947b04da70589110dacbdb2461e27d.zip
repr(align) <= 4 should still be byval
Diffstat (limited to 'compiler/rustc_codegen_cranelift/src')
-rw-r--r--compiler/rustc_codegen_cranelift/src/abi/comments.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_cranelift/src/abi/comments.rs b/compiler/rustc_codegen_cranelift/src/abi/comments.rs
index f1ada7b7219..97f8452a468 100644
--- a/compiler/rustc_codegen_cranelift/src/abi/comments.rs
+++ b/compiler/rustc_codegen_cranelift/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: _,