Enable delinearization by default - second try

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

llvm-svn: 231595
This commit is contained in:
Tobias Grosser 2015-03-08 15:21:18 +00:00
parent bf7193ae61
commit 6973cb6ec7
1 changed files with 1 additions and 1 deletions

View File

@ -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",