[llvm] 39ff539 - SyncDependenceAnalysis.h - remove orphan method declarations. NFCI.

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Fri Jun 5 06:39:10 PDT 2020


Author: Simon Pilgrim
Date: 2020-06-05T14:35:31+01:00
New Revision: 39ff53984db796ad0ca19a88aea5eadde14fbe42

URL: https://github.com/llvm/llvm-project/commit/39ff53984db796ad0ca19a88aea5eadde14fbe42
DIFF: https://github.com/llvm/llvm-project/commit/39ff53984db796ad0ca19a88aea5eadde14fbe42.diff

LOG: SyncDependenceAnalysis.h - remove orphan method declarations. NFCI.

These have been there since the header was added by D51491 but afaict without an implementation, all functionality is actually in DivergenceAnalysis

Added: 
    

Modified: 
    llvm/include/llvm/Analysis/SyncDependenceAnalysis.h

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/Analysis/SyncDependenceAnalysis.h b/llvm/include/llvm/Analysis/SyncDependenceAnalysis.h
index 099403b47757..2f07b3135308 100644
--- a/llvm/include/llvm/Analysis/SyncDependenceAnalysis.h
+++ b/llvm/include/llvm/Analysis/SyncDependenceAnalysis.h
@@ -37,12 +37,7 @@ using ConstBlockSet = SmallPtrSet<const BasicBlock *, 4>;
 /// This analysis relates points of divergent control to points of converging
 /// divergent control. The analysis requires all loops to be reducible.
 class SyncDependenceAnalysis {
-  void visitSuccessor(const BasicBlock &succBlock, const Loop *termLoop,
-                      const BasicBlock *defBlock);
-
 public:
-  bool inRegion(const BasicBlock &BB) const;
-
   ~SyncDependenceAnalysis();
   SyncDependenceAnalysis(const DominatorTree &DT, const PostDominatorTree &PDT,
                          const LoopInfo &LI);


        


More information about the llvm-commits mailing list