about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPaul Daniel Faria <Nashenas88@users.noreply.github.com>2019-09-24 21:29:52 -0400
committerPaul Daniel Faria <Nashenas88@users.noreply.github.com>2019-12-02 08:30:30 -0500
commitce29f43f52af910783b20174522e2e5a2177b2fc (patch)
tree85c193be7b7a96c4cd20eebe763b821ff1ec5115
parentb5240596d2c1efbab04509d689fe50e339952ec4 (diff)
downloadrust-ce29f43f52af910783b20174522e2e5a2177b2fc.tar.gz
rust-ce29f43f52af910783b20174522e2e5a2177b2fc.zip
Get rid of old comment
-rw-r--r--src/librustc/mir/mod.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/librustc/mir/mod.rs b/src/librustc/mir/mod.rs
index 30958700b1b..d0903e04d16 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<BasicBlock, Vec<BasicBlock>> {
-        // 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())
         }