Standardized 'failed' to 'Failed' in LoopVectorizationRequirements.

llvm-svn: 245759
This commit is contained in:
Tyler Nowicki 2015-08-21 23:03:24 +00:00
parent fc95c85cb5
commit 552a62fabc
1 changed files with 4 additions and 4 deletions

View File

@ -1499,7 +1499,7 @@ public:
bool doesNotMeet(Function *F, Loop *L, const LoopVectorizeHints &Hints) {
// If a loop hint is provided the diagnostic is always produced.
const char *Name = Hints.isForced() ? DiagnosticInfo::AlwaysPrint : LV_NAME;
bool failed = false;
bool Failed = false;
if (UnsafeAlgebraInst &&
Hints.getForce() == LoopVectorizeHints::FK_Undefined &&
Hints.getWidth() == 0) {
@ -1509,7 +1509,7 @@ public:
"order of operations, however IEEE 754 "
"floating-point operations are not "
"commutative");
failed = true;
Failed = true;
}
if (NumRuntimePointerChecks >
@ -1524,10 +1524,10 @@ public:
"would exceed the limit of "
<< VectorizerParams::RuntimeMemoryCheckThreshold << " checks");
DEBUG(dbgs() << "LV: Too many memory checks needed.\n");
failed = true;
Failed = true;
}
return failed;
return Failed;
}
private: