[polly] r251787 - Remove old and redundant options

Tobias Grosser via llvm-commits llvm-commits at lists.llvm.org
Mon Nov 2 02:13:33 PST 2015


Author: grosser
Date: Mon Nov  2 04:13:32 2015
New Revision: 251787

URL: http://llvm.org/viewvc/llvm-project?rev=251787&view=rev
Log:
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.

Modified:
    polly/trunk/lib/Analysis/ScopDetection.cpp
    polly/trunk/lib/CodeGen/IslAst.cpp

Modified: polly/trunk/lib/Analysis/ScopDetection.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Analysis/ScopDetection.cpp?rev=251787&r1=251786&r2=251787&view=diff
==============================================================================
--- polly/trunk/lib/Analysis/ScopDetection.cpp (original)
+++ polly/trunk/lib/Analysis/ScopDetection.cpp Mon Nov  2 04:13:32 2015
@@ -79,11 +79,6 @@ static cl::opt<bool, true> XPollyProcess
     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"),

Modified: polly/trunk/lib/CodeGen/IslAst.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/CodeGen/IslAst.cpp?rev=251787&r1=251786&r2=251787&view=diff
==============================================================================
--- polly/trunk/lib/CodeGen/IslAst.cpp (original)
+++ polly/trunk/lib/CodeGen/IslAst.cpp Mon Nov  2 04:13:32 2015
@@ -71,11 +71,6 @@ static cl::opt<bool> DetectParallel("pol
                                     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:




More information about the llvm-commits mailing list