Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jyn514 committed Jan 8, 2021
1 parent 26438b4 commit 0215b3a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion compiler/rustc_query_system/src/query/plumbing.rs
Expand Up @@ -566,7 +566,6 @@ fn incremental_verify_ich<CTX, K, V>(
assert!(new_hash == old_hash, "found unstable fingerprints for {:?}", dep_node,);
}

#[inline(always)]
fn force_query_with_job<C, CTX>(
tcx: CTX,
key: C::Key,
Expand Down

0 comments on commit 0215b3a

Please sign in to comment.