Remove incorrect value description for -enable-polly-aligned
authorTobias Grosser <tobias@grosser.es>
Wed, 22 Oct 2014 23:22:41 +0000 (23:22 +0000)
committerTobias Grosser <tobias@grosser.es>
Wed, 22 Oct 2014 23:22:41 +0000 (23:22 +0000)
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

polly/lib/CodeGen/BlockGenerators.cpp

index bc128eb..73fb6e2 100644 (file)
 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",