[polly] r231595 - Enable delinearization by default - second try

Tobias Grosser tobias at grosser.es
Sun Mar 8 08:21:18 PDT 2015


Author: grosser
Date: Sun Mar  8 10:21:18 2015
New Revision: 231595

URL: http://llvm.org/viewvc/llvm-project?rev=231595&view=rev
Log:
Enable delinearization by default - second try

After having fixed the LNT bugs in the previous commits, lets reenable the
delinearization.

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

Modified: polly/trunk/lib/Analysis/ScopDetection.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Analysis/ScopDetection.cpp?rev=231595&r1=231594&r2=231595&view=diff
==============================================================================
--- polly/trunk/lib/Analysis/ScopDetection.cpp (original)
+++ polly/trunk/lib/Analysis/ScopDetection.cpp Sun Mar  8 10:21:18 2015
@@ -151,7 +151,7 @@ static cl::opt<bool, true>
     PollyDelinearizeX("polly-delinearize",
                       cl::desc("Delinearize array access functions"),
                       cl::location(PollyDelinearize), cl::Hidden,
-                      cl::ZeroOrMore, cl::init(false), cl::cat(PollyCategory));
+                      cl::ZeroOrMore, cl::init(true), cl::cat(PollyCategory));
 
 static cl::opt<bool>
     VerifyScops("polly-detect-verify",





More information about the llvm-commits mailing list