Auto merge of #124008 - nnethercote:simpler-static_assert_size, r=Nilstrieb

Simplify `static_assert_size`s.

We want to run them on all 64-bit platforms.

r? `@ghost`
This commit is contained in:
bors
2024-04-18 09:47:45 +00:00
36 changed files with 45 additions and 43 deletions

View File

@@ -72,7 +72,7 @@ pub struct PendingPredicateObligation<'tcx> {
}
// `PendingPredicateObligation` is used a lot. Make sure it doesn't unintentionally get bigger.
#[cfg(all(any(target_arch = "x86_64", target_arch = "aarch64"), target_pointer_width = "64"))]
#[cfg(target_pointer_width = "64")]
static_assert_size!(PendingPredicateObligation<'_>, 72);
impl<'tcx> FulfillmentContext<'tcx> {