Skip to content

Commit 335a142

Browse files
uwu
1 parent 82ae54c commit 335a142

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

compiler/rustc_hir/src/hir.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3655,7 +3655,7 @@ mod size_asserts {
36553655
static_assert_size!(ForeignItem<'_>, 72);
36563656
static_assert_size!(ForeignItemKind<'_>, 40);
36573657
static_assert_size!(GenericArg<'_>, 32);
3658-
static_assert_size!(GenericBound<'_>, 48);
3658+
static_assert_size!(GenericBound<'_>, 64);
36593659
static_assert_size!(Generics<'_>, 56);
36603660
static_assert_size!(Impl<'_>, 80);
36613661
static_assert_size!(ImplItem<'_>, 88);

compiler/rustc_middle/src/query/mod.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,8 @@ rustc_queries! {
539539
desc { |tcx| "promoting constants in MIR for `{}`", tcx.def_path_str(key) }
540540
}
541541

542-
query closure_typeinfo(key: LocalDefId) -> ty::ClosureTypeInfo<'tcx> {
542+
query closure_typeinfo(key: LocalDefId) -> &'tcx ty::ClosureTypeInfo<'tcx> {
543+
arena_cache
543544
desc {
544545
|tcx| "finding symbols for captures of closure `{}`",
545546
tcx.def_path_str(key)

compiler/rustc_middle/src/traits/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ impl<'tcx> ObligationCauseCode<'tcx> {
532532

533533
// `ObligationCauseCode` is used a lot. Make sure it doesn't unintentionally get bigger.
534534
#[cfg(all(target_arch = "x86_64", target_pointer_width = "64"))]
535-
static_assert_size!(ObligationCauseCode<'_>, 48);
535+
static_assert_size!(ObligationCauseCode<'_>, 56);
536536

537537
#[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)]
538538
pub enum StatementAsExpression {

0 commit comments

Comments
 (0)