Enable modeling of scalar read-only dependences

Even though these are not strictly necessary for sequential code generation,
we still model both for sequential and parallel code generation to reduce
the set of configurations that needs to be tested. If this turns out, against
what we currently see, to be significant overhead, we can decide to limit this
feature again to parallel code-generation use cases only.

llvm-svn: 246420
This commit is contained in:
Tobias Grosser 2015-08-31 06:46:32 +00:00
parent 6b0af3c832
commit 58758ef4ea
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ using namespace polly;
static cl::opt<bool> ModelReadOnlyScalars(
"polly-analyze-read-only-scalars",
cl::desc("Model read-only scalar values in the scop description"),
cl::Hidden, cl::ZeroOrMore, cl::init(false), cl::cat(PollyCategory));
cl::Hidden, cl::ZeroOrMore, cl::init(true), cl::cat(PollyCategory));
#define DEBUG_TYPE "polly-analyze-ir"