Typo: Maxize -> Mazimize

Found by Sebastian Pop.

llvm-svn: 149287
This commit is contained in:
Tobias Grosser 2012-01-30 22:43:56 +00:00
parent 911e142f03
commit a4ea90b88c
1 changed files with 4 additions and 4 deletions

View File

@ -62,8 +62,8 @@ FusionStrategy("polly-opt-fusion",
cl::Hidden, cl::init("min"));
static cl::opt<std::string>
MaxizeBandDepth("polly-opt-maximize-bands",
cl::desc("Maxize the band depth (yes/no)"),
MaximizeBandDepth("polly-opt-maximize-bands",
cl::desc("Maximize the band depth (yes/no)"),
cl::Hidden, cl::init("yes"));
namespace {
@ -483,9 +483,9 @@ bool IslScheduleOptimizer::runOnScop(Scop &S) {
int IslMaximizeBands;
if (MaxizeBandDepth == "yes") {
if (MaximizeBandDepth == "yes") {
IslMaximizeBands = 1;
} else if (MaxizeBandDepth == "no") {
} else if (MaximizeBandDepth == "no") {
IslMaximizeBands = 0;
} else {
errs() << "warning: Option -polly-opt-maximize-bands should either be 'yes'"