From b98ff91de117a0cbe656be97c47a63d7e6f063b2 Mon Sep 17 00:00:00 2001 From: Michael Goulet Date: Wed, 18 Dec 2024 23:09:52 +0000 Subject: [PATCH] TEMPORARY: revert hashing --- compiler/rustc_middle/src/hir/map/mod.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/compiler/rustc_middle/src/hir/map/mod.rs b/compiler/rustc_middle/src/hir/map/mod.rs index 7039aac465a73..9eb8863e9c4f6 100644 --- a/compiler/rustc_middle/src/hir/map/mod.rs +++ b/compiler/rustc_middle/src/hir/map/mod.rs @@ -1121,9 +1121,6 @@ pub(super) fn crate_hash(tcx: TyCtxt<'_>, _: LocalCrate) -> Svh { // the fly in the resolver, storing only their accumulated hash in `ResolverGlobalCtxt`, // and combining it with other hashes here. resolutions.visibilities_for_hashing.hash_stable(&mut hcx, &mut stable_hasher); - with_metavar_spans(|mspans| { - mspans.hash_stable(&mut hcx, &mut stable_hasher); - }); stable_hasher.finish() });