diff --git a/clang/include/clang/Analysis/FlowSensitive/TypeErasedDataflowAnalysis.h b/clang/include/clang/Analysis/FlowSensitive/TypeErasedDataflowAnalysis.h index 88a33d19f7d8f..67c323dbf45e1 100644 --- a/clang/include/clang/Analysis/FlowSensitive/TypeErasedDataflowAnalysis.h +++ b/clang/include/clang/Analysis/FlowSensitive/TypeErasedDataflowAnalysis.h @@ -132,25 +132,6 @@ struct TypeErasedDataflowAnalysisState { } }; -/// Transfers the state of a basic block by evaluating each of its elements in -/// the context of `Analysis` and the states of its predecessors that are -/// available in `BlockStates`. `PostVisitCFG` (if provided) will be applied to -/// each element in the block, after it is evaluated. -/// -/// Requirements: -/// -/// All predecessors of `Block` except those with loop back edges must have -/// already been transferred. States in `BlockStates` that are set to -/// `std::nullopt` represent basic blocks that are not evaluated yet. -TypeErasedDataflowAnalysisState transferBlock( - const ControlFlowContext &CFCtx, - llvm::ArrayRef> BlockStates, - const CFGBlock &Block, const Environment &InitEnv, - TypeErasedDataflowAnalysis &Analysis, - std::function - PostVisitCFG = nullptr); - /// Performs dataflow analysis and returns a mapping from basic block IDs to /// dataflow analysis states that model the respective basic blocks. Indices of /// the returned vector correspond to basic block IDs. Returns an error if the diff --git a/clang/lib/Analysis/FlowSensitive/TypeErasedDataflowAnalysis.cpp b/clang/lib/Analysis/FlowSensitive/TypeErasedDataflowAnalysis.cpp index 626b57b43755e..900aa97e9f6de 100644 --- a/clang/lib/Analysis/FlowSensitive/TypeErasedDataflowAnalysis.cpp +++ b/clang/lib/Analysis/FlowSensitive/TypeErasedDataflowAnalysis.cpp @@ -495,18 +495,6 @@ transferCFGBlock(const CFGBlock &Block, AnalysisContext &AC, return State; } -TypeErasedDataflowAnalysisState transferBlock( - const ControlFlowContext &CFCtx, - llvm::ArrayRef> BlockStates, - const CFGBlock &Block, const Environment &InitEnv, - TypeErasedDataflowAnalysis &Analysis, - std::function - PostVisitCFG) { - AnalysisContext AC(CFCtx, Analysis, InitEnv, BlockStates); - return transferCFGBlock(Block, AC, PostVisitCFG); -} - llvm::Expected>> runTypeErasedDataflowAnalysis( const ControlFlowContext &CFCtx, TypeErasedDataflowAnalysis &Analysis,