about summary refs log tree commit diff
path: root/compiler/rustc_const_eval/src/util/alignment.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2025-09-29 08:43:49 +0000
committerbors <bors@rust-lang.org>2025-09-29 08:43:49 +0000
commit128b36a4a48534b048845cc744b9672529d13df1 (patch)
tree1865fff489a995052f27f86e59960d24426dfa9f /compiler/rustc_const_eval/src/util/alignment.rs
parent7af913fc90968844286e5ff6675ab66afa98cdc6 (diff)
parentcd6f32a4eb6b53e7df0882bc396c1c36cf4736ca (diff)
downloadrust-128b36a4a48534b048845cc744b9672529d13df1.tar.gz
rust-128b36a4a48534b048845cc744b9672529d13df1.zip
Auto merge of #147145 - Zalathar:rollup-s7kcs3w, r=Zalathar
Rollup of 3 pull requests

Successful merges:

 - rust-lang/rust#147100 (tests: Remove ignore-android directive for fixed issue)
 - rust-lang/rust#147116 (compiler: remove AbiAlign inside TargetDataLayout)
 - rust-lang/rust#147134 (remove explicit deref of AbiAlign for most methods)

r? `@ghost`
`@rustbot` modify labels: rollup
Diffstat (limited to 'compiler/rustc_const_eval/src/util/alignment.rs')
-rw-r--r--compiler/rustc_const_eval/src/util/alignment.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_const_eval/src/util/alignment.rs b/compiler/rustc_const_eval/src/util/alignment.rs
index 9507b24f603..9aafc7efd8a 100644
--- a/compiler/rustc_const_eval/src/util/alignment.rs
+++ b/compiler/rustc_const_eval/src/util/alignment.rs
@@ -37,7 +37,7 @@ where
             debug!(
                 "is_disaligned({:?}) - align = {}, packed = {}; not disaligned",
                 place,
-                layout.align.abi.bytes(),
+                layout.align.bytes(),
                 pack.bytes()
             );
             false