[polly] r179149 - fix typos
Sebastian Pop
spop at codeaurora.org
Tue Apr 9 21:09:12 PDT 2013
Author: spop
Date: Tue Apr 9 23:09:12 2013
New Revision: 179149
URL: http://llvm.org/viewvc/llvm-project?rev=179149&view=rev
Log:
fix typos
Modified:
polly/trunk/lib/IndependentBlocks.cpp
Modified: polly/trunk/lib/IndependentBlocks.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/IndependentBlocks.cpp?rev=179149&r1=179148&r2=179149&view=diff
==============================================================================
--- polly/trunk/lib/IndependentBlocks.cpp (original)
+++ polly/trunk/lib/IndependentBlocks.cpp Tue Apr 9 23:09:12 2013
@@ -176,8 +176,8 @@ void IndependentBlocks::moveOperandTree(
DEBUG(dbgs() << "For Operand:\n" << *Operand << "\n--->");
- // If the Scop Region does not contain N, skip it and all its operand and
- // continue. because we reach a "parameter".
+ // If the Scop Region does not contain N, skip it and all its operands and
+ // continue: because we reach a "parameter".
// FIXME: we must keep the predicate instruction inside the Scop, otherwise
// it will be translated to a load instruction, and we can not handle load
// as affine predicate at this moment.
@@ -197,7 +197,7 @@ void IndependentBlocks::moveOperandTree(
continue;
}
- // Do not need to move instruction if it contained in the same BB with
+ // Do not need to move instruction if it is contained in the same BB with
// the root instruction.
if (Operand->getParent() == CurBB) {
DEBUG(dbgs() << "No need to move.\n");
More information about the llvm-commits
mailing list