Get rid of old comment

This commit is contained in:
Paul Daniel Faria 2019-09-24 21:29:52 -04:00
parent b5240596d2
commit ce29f43f52

View File

@ -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())
}