[polly] r231590 - Enable delinearization by default
Tobias Grosser
tobias at grosser.es
Sun Mar 8 05:30:37 PDT 2015
Author: grosser
Date: Sun Mar 8 07:30:37 2015
New Revision: 231590
URL: http://llvm.org/viewvc/llvm-project?rev=231590&view=rev
Log:
Enable delinearization by default
The performance test case just committed was the last open issue I was aware of.
We enable this by default to increase test coverage and to possibly trigger
reports of issues yet unknown.
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=231590&r1=231589&r2=231590&view=diff
==============================================================================
--- polly/trunk/lib/Analysis/ScopDetection.cpp (original)
+++ polly/trunk/lib/Analysis/ScopDetection.cpp Sun Mar 8 07:30:37 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