diff options
| author | Chris Lattner <sabre@nondot.org> | 2006-08-27 22:11:07 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2006-08-27 22:11:07 +0000 |
| commit | aac4993fdc9ac64a5a41d62168294e32a18199c6 (patch) | |
| tree | 803a83801bba781e826a9009c56219238c96bbb5 | |
| parent | 2de6e33c067bb656ce20530b4102271599245f5f (diff) | |
| download | bcm5719-llvm-aac4993fdc9ac64a5a41d62168294e32a18199c6.tar.gz bcm5719-llvm-aac4993fdc9ac64a5a41d62168294e32a18199c6.zip | |
Remove a dead class.
llvm-svn: 29918
| -rw-r--r-- | llvm/include/llvm/Support/PassNameParser.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/llvm/include/llvm/Support/PassNameParser.h b/llvm/include/llvm/Support/PassNameParser.h index 6b7a88c5b6f..5fa67d362ca 100644 --- a/llvm/include/llvm/Support/PassNameParser.h +++ b/llvm/include/llvm/Support/PassNameParser.h @@ -99,23 +99,6 @@ public: } }; - -//===----------------------------------------------------------------------===// -// FilteredPassNameParser class - Just like PassNameParser, but filter out -// passes that do not have a PassType that includes the flags specified as the -// template argument. -// -template<unsigned Flags> -struct FilteredPassNameParser : public PassNameParser { - - // ignorablePassImpl - Can be overriden in subclasses to refine the list of - // which passes we want to include. - // - virtual bool ignorablePassImpl(const PassInfo *P) const { - return (P->getPassType() & Flags) == 0; - } -}; - } // End llvm namespace #endif |

