From ce29f43f52af910783b20174522e2e5a2177b2fc Mon Sep 17 00:00:00 2001 From: Paul Daniel Faria Date: Tue, 24 Sep 2019 21:29:52 -0400 Subject: [PATCH] Get rid of old comment --- src/librustc/mir/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/librustc/mir/mod.rs b/src/librustc/mir/mod.rs index 30958700b1b6..d0903e04d16f 100644 --- a/src/librustc/mir/mod.rs +++ b/src/librustc/mir/mod.rs @@ -225,7 +225,6 @@ impl<'tcx> Body<'tcx> { #[inline] pub fn predecessors(&mut self) -> &IndexVec> { - // TODO(nashenas88) figure out a way to get rid of this clone if self.predecessors_cache.is_none() { self.predecessors_cache = Some(self.calculate_predecessors()) }