summaryrefslogtreecommitdiffstats
path: root/include/llvm/Pass.h
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2009-04-01 21:27:08 +0000
committerDevang Patel <dpatel@apple.com>2009-04-01 21:27:08 +0000
commit8a7eed32678cf6cb3cf29c77a7fa67abc6450aa9 (patch)
treeebf44445fb756150dab4015d2e34191df59f7505 /include/llvm/Pass.h
parent34cb154028a2d778c2ea6bb6e08acc8f8a0c1225 (diff)
downloadexternal_llvm-8a7eed32678cf6cb3cf29c77a7fa67abc6450aa9.zip
external_llvm-8a7eed32678cf6cb3cf29c77a7fa67abc6450aa9.tar.gz
external_llvm-8a7eed32678cf6cb3cf29c77a7fa67abc6450aa9.tar.bz2
Remove dead code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@68246 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Pass.h')
-rw-r--r--include/llvm/Pass.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/llvm/Pass.h b/include/llvm/Pass.h
index 0527e0c..923de65 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<std::pair<const PassInfo*, Pass*> > AnalysisImpls;
void operator=(const Pass&); // DO NOT IMPLEMENT
Pass(const Pass &); // DO NOT IMPLEMENT