summaryrefslogtreecommitdiffstats
path: root/polly/lib/CodeGen
diff options
context:
space:
mode:
authorTobias Grosser <tobias@grosser.es>2014-10-22 23:22:41 +0000
committerTobias Grosser <tobias@grosser.es>2014-10-22 23:22:41 +0000
commit878aba4980c256b7bdba17633d971e785401ad53 (patch)
tree049e162007508679b1e5baaa3262ceece08a252f /polly/lib/CodeGen
parentefe7e2267316adecf0bee20bd9e0da21924a59c7 (diff)
downloadbcm5719-llvm-878aba4980c256b7bdba17633d971e785401ad53.tar.gz
bcm5719-llvm-878aba4980c256b7bdba17633d971e785401ad53.zip
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
Diffstat (limited to 'polly/lib/CodeGen')
-rw-r--r--polly/lib/CodeGen/BlockGenerators.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/polly/lib/CodeGen/BlockGenerators.cpp b/polly/lib/CodeGen/BlockGenerators.cpp
index bc128ebb058..73fb6e23697 100644
--- a/polly/lib/CodeGen/BlockGenerators.cpp
+++ b/polly/lib/CodeGen/BlockGenerators.cpp
@@ -34,11 +34,10 @@
using namespace llvm;
using namespace polly;
-static cl::opt<bool>
- Aligned("enable-polly-aligned",
- cl::desc("Assumed aligned memory accesses."), cl::Hidden,
- cl::value_desc("OpenMP code generation enabled if true"),
- cl::init(false), cl::ZeroOrMore, cl::cat(PollyCategory));
+static cl::opt<bool> Aligned("enable-polly-aligned",
+ cl::desc("Assumed aligned memory accesses."),
+ cl::Hidden, cl::init(false), cl::ZeroOrMore,
+ cl::cat(PollyCategory));
static cl::opt<bool, true>
SCEVCodegenF("polly-codegen-scev",
OpenPOWER on IntegriCloud