aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-08-27 22:11:07 +0000
committerChris Lattner <sabre@nondot.org>2006-08-27 22:11:07 +0000
commitf91e4f86c2acc44de72cf46ae78e541195ce63b6 (patch)
tree15ad2a9c80963f314a3ed73070c44aa6fd57b6e4
parent232885873fb0081acc1420ab83b14ab6f8eba280 (diff)
Remove a dead class.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29918 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Support/PassNameParser.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/include/llvm/Support/PassNameParser.h b/include/llvm/Support/PassNameParser.h
index 6b7a88c5b6..5fa67d362c 100644
--- a/include/llvm/Support/PassNameParser.h
+++ b/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