We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 499d784 commit bd90302Copy full SHA for bd90302
src/librustc_mir/borrow_check/nll/region_infer/mod.rs
@@ -556,7 +556,7 @@ impl<'tcx> RegionInferenceContext<'tcx> {
556
/// indices of constraints that need to be re-evaluated when X changes.
557
/// These are constraints like Y: X @ P -- so if X changed, we may
558
/// need to grow Y.
559
- #[inline(never)]
+ #[inline(never)] // ensure dfs is identifiable in profiles
560
fn build_dependency_map(&mut self) -> IndexVec<RegionVid, Option<ConstraintIndex>> {
561
let mut map = IndexVec::from_elem(None, &self.definitions);
562
0 commit comments