diff options
author | Devang Patel <dpatel@apple.com> | 2006-11-11 01:56:39 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2006-11-11 01:56:39 +0000 |
commit | f13dc1b9e81113472c536f812b09790bd9a67e79 (patch) | |
tree | 37827d29a159cdb184c00088f60ab827b3886736 /lib/VMCore/PassManager.cpp | |
parent | e253385b108cd946b1ac150302f246d3b218be77 (diff) |
Remove dead code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31668 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/PassManager.cpp')
-rw-r--r-- | lib/VMCore/PassManager.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/VMCore/PassManager.cpp b/lib/VMCore/PassManager.cpp index 599f4b08c9..c6130d8f55 100644 --- a/lib/VMCore/PassManager.cpp +++ b/lib/VMCore/PassManager.cpp @@ -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; |