Remove dead code.
authorDevang Patel <dpatel@apple.com>
Sat, 11 Nov 2006 01:56:39 +0000 (01:56 +0000)
committerDevang Patel <dpatel@apple.com>
Sat, 11 Nov 2006 01:56:39 +0000 (01:56 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31668 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/PassManager.cpp

index 599f4b08c9280ca47da3cf0ac1ee2a0d51358a9b..c6130d8f5563babc41482e5a27834c199f9012d4 100644 (file)
@@ -41,9 +41,6 @@ public:
   /// Augment AvailableAnalysis by adding analysis made available by pass P.
   void noteDownAvailableAnalysis(Pass *P);
 
-  /// Remove AnalysisID from the RequiredSet
-  void removeAnalysis(AnalysisID AID);
-
   /// Remove Analysis that is not preserved by the pass
   void removeNotPreservedAnalysis(Pass *P);
   
@@ -233,12 +230,6 @@ void CommonPassManagerImpl::noteDownAvailableAnalysis(Pass *P) {
   }
 }
 
-/// Remove AnalysisID from the RequiredSet
-void CommonPassManagerImpl::removeAnalysis(AnalysisID AID) {
-
-  // TODO
-}
-
 /// Remove Analyss not preserved by Pass P
 void CommonPassManagerImpl::removeNotPreservedAnalysis(Pass *P) {
   AnalysisUsage AnUsage;