Remove a dead class.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29918 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-08-27 22:11:07 +00:00
parent 232885873f
commit f91e4f86c2

View 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