Remove a dead class.
authorChris Lattner <sabre@nondot.org>
Sun, 27 Aug 2006 22:11:07 +0000 (22:11 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 27 Aug 2006 22:11:07 +0000 (22:11 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29918 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/PassNameParser.h

index 6b7a88c5b6f5bf6dbd53778141e7c51ff0247d73..5fa67d362cafa6ac1ba0447bd7d891d713a268ee 100644 (file)
@@ -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