forked from OSchip/llvm-project
Remove incorrect value description for -enable-polly-aligned
The description of the parameter value passed to -enable-polly-aligned did not make any sense at all, but was just a leftover coming from when this option was copied form -enable-polly-openmp. We just drop it as the option description gives sufficient information already. llvm-svn: 220445
This commit is contained in:
parent
efe7e22673
commit
878aba4980
|
@ -34,11 +34,10 @@
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
using namespace polly;
|
using namespace polly;
|
||||||
|
|
||||||
static cl::opt<bool>
|
static cl::opt<bool> Aligned("enable-polly-aligned",
|
||||||
Aligned("enable-polly-aligned",
|
cl::desc("Assumed aligned memory accesses."),
|
||||||
cl::desc("Assumed aligned memory accesses."), cl::Hidden,
|
cl::Hidden, cl::init(false), cl::ZeroOrMore,
|
||||||
cl::value_desc("OpenMP code generation enabled if true"),
|
cl::cat(PollyCategory));
|
||||||
cl::init(false), cl::ZeroOrMore, cl::cat(PollyCategory));
|
|
||||||
|
|
||||||
static cl::opt<bool, true>
|
static cl::opt<bool, true>
|
||||||
SCEVCodegenF("polly-codegen-scev",
|
SCEVCodegenF("polly-codegen-scev",
|
||||||
|
|
Loading…
Reference in New Issue