rustc_query_system: remove inline annotation from edge_count

This isn't called frequently enough to justify inlining.
This commit is contained in:
Tyson Nottingham 2020-12-15 22:42:38 -08:00
parent 4f76266295
commit 712fcae13a

View File

@ -548,7 +548,6 @@ impl<K: DepKind> DepGraph<K> {
}
}
#[inline]
fn edge_count(&self) -> usize {
let data = self.data.as_ref().unwrap();
let previous = &data.previous;