aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2021-04-22 19:48:53 +0100
committerGitHub <[email protected]>2021-04-22 19:48:53 +0100
commit07fb65abb83c1e06fbdb8b3616ede59921d70f8c (patch)
treefd85ce36ee615e3867d3abf9b9babe8cd7cb10fe
parente529f733550e9d7bd0d9558a455bbbb5906b917c (diff)
parentc37ca7841cb42b659eb2ed4b2a095a283db5dce7 (diff)
Merge #8628
8628: minor: Add one more profiling span to add_dep r=lnicola a=lnicola CC #8623 bors r+ Co-authored-by: LaurenČ›iu Nicola <[email protected]>
-rw-r--r--crates/base_db/src/input.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/base_db/src/input.rs b/crates/base_db/src/input.rs
index 07628935f..0ef77ef5d 100644
--- a/crates/base_db/src/input.rs
+++ b/crates/base_db/src/input.rs
@@ -239,6 +239,7 @@ impl CrateGraph {
239 name: CrateName, 239 name: CrateName,
240 to: CrateId, 240 to: CrateId,
241 ) -> Result<(), CyclicDependenciesError> { 241 ) -> Result<(), CyclicDependenciesError> {
242 let _p = profile::span("add_dep");
242 if self.dfs_find(from, to, &mut FxHashSet::default()) { 243 if self.dfs_find(from, to, &mut FxHashSet::default()) {
243 return Err(CyclicDependenciesError { 244 return Err(CyclicDependenciesError {
244 from: (from, self[from].display_name.clone()), 245 from: (from, self[from].display_name.clone()),