From 712fcae13a17940d180a4756eb8fff40470c86d4 Mon Sep 17 00:00:00 2001 From: Tyson Nottingham Date: Tue, 15 Dec 2020 22:42:38 -0800 Subject: [PATCH] rustc_query_system: remove inline annotation from edge_count This isn't called frequently enough to justify inlining. --- compiler/rustc_query_system/src/dep_graph/graph.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/compiler/rustc_query_system/src/dep_graph/graph.rs b/compiler/rustc_query_system/src/dep_graph/graph.rs index fefc8ed6f1a..87087dc7b7b 100644 --- a/compiler/rustc_query_system/src/dep_graph/graph.rs +++ b/compiler/rustc_query_system/src/dep_graph/graph.rs @@ -548,7 +548,6 @@ pub fn edge_deduplication_data(&self) -> Option<(u64, u64)> { } } - #[inline] fn edge_count(&self) -> usize { let data = self.data.as_ref().unwrap(); let previous = &data.previous; -- 2.44.0