Skip to content
Snippets Groups Projects
Commit aac4993f authored by Chris Lattner's avatar Chris Lattner
Browse files

Remove a dead class.

llvm-svn: 29918
parent 2de6e33c
No related branches found
No related tags found
No related merge requests found
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment