From 878aba4980c256b7bdba17633d971e785401ad53 Mon Sep 17 00:00:00 2001 From: Tobias Grosser Date: Wed, 22 Oct 2014 23:22:41 +0000 Subject: [PATCH] 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 --- polly/lib/CodeGen/BlockGenerators.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/polly/lib/CodeGen/BlockGenerators.cpp b/polly/lib/CodeGen/BlockGenerators.cpp index bc128ebb0585..73fb6e23697d 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 - 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 Aligned("enable-polly-aligned", + cl::desc("Assumed aligned memory accesses."), + cl::Hidden, cl::init(false), cl::ZeroOrMore, + cl::cat(PollyCategory)); static cl::opt SCEVCodegenF("polly-codegen-scev",