diff options
| author | Erik Desjardins <erikdesjardins@users.noreply.github.com> | 2023-06-11 17:05:26 -0400 |
|---|---|---|
| committer | Erik Desjardins <erikdesjardins@users.noreply.github.com> | 2023-07-10 19:19:40 -0400 |
| commit | 7e933b4e26947b04da70589110dacbdb2461e27d (patch) | |
| tree | 63b501c66626cdf9b1853eaa27e4c5159083fa46 /compiler/rustc_codegen_cranelift | |
| parent | 2591c30eaf30425812f42beb47bd2615a533e961 (diff) | |
| download | rust-7e933b4e26947b04da70589110dacbdb2461e27d.tar.gz rust-7e933b4e26947b04da70589110dacbdb2461e27d.zip | |
repr(align) <= 4 should still be byval
Diffstat (limited to 'compiler/rustc_codegen_cranelift')
| -rw-r--r-- | compiler/rustc_codegen_cranelift/src/abi/comments.rs | 2 |
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: _, |
