Rollup merge of #88668 - hvdijk:x32, r=joshtriplett
Change more x64 size checks to not apply to x32.
Commit 95e096d6
changed a bunch of size checks already, but more have
been added, so this fixes the new ones the same way: the various size
checks that are conditional on target_arch = "x86_64" were not intended
to apply to x86_64-unknown-linux-gnux32, so add
target_pointer_width = "64" to the conditions.
This commit is contained in:
commit
7b514cdcfe
3 changed files with 6 additions and 6 deletions
|
@ -34,7 +34,7 @@ pub struct AttrWrapper {
|
|||
|
||||
// This struct is passed around very frequently,
|
||||
// so make sure it doesn't accidentally get larger
|
||||
#[cfg(target_arch = "x86_64")]
|
||||
#[cfg(all(target_arch = "x86_64", target_pointer_width = "64"))]
|
||||
rustc_data_structures::static_assert_size!(AttrWrapper, 16);
|
||||
|
||||
impl AttrWrapper {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue