Remove old and redundant options

We remove -polly-detect-unprofitable and -polly-no-early-exit. Both have been
superseeded by -polly-process-unprofitable and were only kept as aliases for
our buildbots to continue to work. As all buildbots have been moved to the new
options, we can now remove the old ones for good.

llvm-svn: 251787
This commit is contained in:
Tobias Grosser 2015-11-02 10:13:32 +00:00
parent 158b8b898c
commit f423c1200f
2 changed files with 0 additions and 10 deletions

View File

@ -79,11 +79,6 @@ static cl::opt<bool, true> XPollyProcessUnprofitable(
cl::location(PollyProcessUnprofitable), cl::init(false), cl::ZeroOrMore,
cl::cat(PollyCategory));
static cl::alias
DetectUnprofitableAlias("polly-detect-unprofitable",
cl::desc("Alias for -polly-process-unprofitable"),
cl::aliasopt(XPollyProcessUnprofitable));
static cl::opt<std::string> OnlyFunction(
"polly-only-func",
cl::desc("Only run on functions that contain a certain string"),

View File

@ -71,11 +71,6 @@ static cl::opt<bool> DetectParallel("polly-ast-detect-parallel",
cl::init(false), cl::ZeroOrMore,
cl::cat(PollyCategory));
static cl::opt<bool> EarlyExit("polly-no-early-exit",
cl::desc("Dummy flag to keep LNT builders run"),
cl::Hidden, cl::ZeroOrMore,
cl::cat(PollyCategory));
namespace polly {
class IslAst {
public: