Remove ResultsCloned
and ResultsClonedCursor
.
They're now unused.
This commit is contained in:
parent
500e55ba8c
commit
34aa36b266
3 changed files with 4 additions and 26 deletions
|
@ -25,7 +25,7 @@ use super::fmt::DebugWithContext;
|
|||
use super::graphviz;
|
||||
use super::{
|
||||
visit_results, Analysis, AnalysisDomain, Direction, GenKill, GenKillAnalysis, GenKillSet,
|
||||
JoinSemiLattice, ResultsClonedCursor, ResultsCursor, ResultsVisitor,
|
||||
JoinSemiLattice, ResultsCursor, ResultsVisitor,
|
||||
};
|
||||
|
||||
pub type EntrySets<'tcx, A> = IndexVec<BasicBlock, <A as AnalysisDomain<'tcx>>::Domain>;
|
||||
|
@ -41,9 +41,6 @@ where
|
|||
pub(super) _marker: PhantomData<&'tcx ()>,
|
||||
}
|
||||
|
||||
/// `Results` type with a cloned `Analysis` and borrowed entry sets.
|
||||
pub type ResultsCloned<'res, 'tcx, A> = Results<'tcx, A, &'res EntrySets<'tcx, A>>;
|
||||
|
||||
impl<'tcx, A, E> Results<'tcx, A, E>
|
||||
where
|
||||
A: Analysis<'tcx>,
|
||||
|
@ -81,20 +78,6 @@ where
|
|||
}
|
||||
}
|
||||
|
||||
impl<'tcx, A> Results<'tcx, A>
|
||||
where
|
||||
A: Analysis<'tcx> + Copy,
|
||||
{
|
||||
/// Creates a `ResultsCursor` that can inspect these `Results`.
|
||||
pub fn cloned_results_cursor<'mir>(
|
||||
&self,
|
||||
body: &'mir mir::Body<'tcx>,
|
||||
) -> ResultsClonedCursor<'_, 'mir, 'tcx, A> {
|
||||
Results { analysis: self.analysis, entry_sets: &self.entry_sets, _marker: PhantomData }
|
||||
.into_results_cursor(body)
|
||||
}
|
||||
}
|
||||
|
||||
/// A solver for dataflow problems.
|
||||
pub struct Engine<'mir, 'tcx, A>
|
||||
where
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue