From 8a7eed32678cf6cb3cf29c77a7fa67abc6450aa9 Mon Sep 17 00:00:00 2001 From: Devang Patel Date: Wed, 1 Apr 2009 21:27:08 +0000 Subject: [PATCH] Remove dead code. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@68246 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Pass.h | 4 ---- include/llvm/PassAnalysisSupport.h | 2 -- 2 files changed, 6 deletions(-) diff --git a/include/llvm/Pass.h b/include/llvm/Pass.h index 0527e0cdbbe..923de658c3b 100644 --- a/include/llvm/Pass.h +++ b/include/llvm/Pass.h @@ -72,10 +72,6 @@ enum PassManagerType { class Pass { AnalysisResolver *Resolver; // Used to resolve analysis intptr_t PassID; - // AnalysisImpls - This keeps track of which passes implement the interfaces - // that are required by the current pass (to implement getAnalysis()). - // - std::vector > AnalysisImpls; void operator=(const Pass&); // DO NOT IMPLEMENT Pass(const Pass &); // DO NOT IMPLEMENT diff --git a/include/llvm/PassAnalysisSupport.h b/include/llvm/PassAnalysisSupport.h index f8b139ecb1a..f0343b3911b 100644 --- a/include/llvm/PassAnalysisSupport.h +++ b/include/llvm/PassAnalysisSupport.h @@ -148,8 +148,6 @@ public: // AnalysisImpls - This keeps track of which passes implements the interfaces // that are required by the current pass (to implement getAnalysis()). - // NOTE : Remove AnalysisImpls from class Pass, when AnalysisResolver - // replaces AnalysisResolver std::vector > AnalysisImpls; private: