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) {
"order of operations, however IEEE 754 "
"floating-point operations are not "
"commutative");
- failed = true;
+ Failed = true;
}
if (NumRuntimePointerChecks >
"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: