1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00

typo + pasto

llvm-svn: 140769
This commit is contained in:
Andrew Trick 2011-09-29 01:53:08 +00:00
parent 49803374a4
commit fa2c108a22

View File

@ -3811,10 +3811,10 @@ LSRInstance::LSRInstance(const TargetLowering *tli, Loop *l, Pass *P)
// If loop preparation eliminates all interesting IV users, bail.
if (IU.empty()) return;
// Skip nested loops until we can model them better with forulae.
// Skip nested loops until we can model them better with formulae.
if (!EnableNested && !L->empty()) {
DEBUG(dbgs() << "LSR skipping outer loop " << *L << "\n");
return false;
return;
}
// Start collecting data and preparing for the solver.