From 0215b3a45644925fa7ec4e9c1e71e9a0c7e21dd3 Mon Sep 17 00:00:00 2001 From: Joshua Nelson Date: Fri, 8 Jan 2021 18:38:33 -0500 Subject: [PATCH] Don't mark `force_query_with_job` as `inline(always)` It's rather large, and using `inline(always)` forces it to be recompiled in each calling crate. --- compiler/rustc_query_system/src/query/plumbing.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/compiler/rustc_query_system/src/query/plumbing.rs b/compiler/rustc_query_system/src/query/plumbing.rs index 426f5bb41d6f2..d17af6120c7b8 100644 --- a/compiler/rustc_query_system/src/query/plumbing.rs +++ b/compiler/rustc_query_system/src/query/plumbing.rs @@ -566,7 +566,6 @@ fn incremental_verify_ich( assert!(new_hash == old_hash, "found unstable fingerprints for {:?}", dep_node,); } -#[inline(always)] fn force_query_with_job( tcx: CTX, key: C::Key,