[llvm] r247793 - Test commit: Fixed a few typos in the comments.
David L Kreitzer via llvm-commits
llvm-commits at lists.llvm.org
Wed Sep 16 06:27:31 PDT 2015
Author: dlkreitz
Date: Wed Sep 16 08:27:30 2015
New Revision: 247793
URL: http://llvm.org/viewvc/llvm-project?rev=247793&view=rev
Log:
Test commit: Fixed a few typos in the comments.
Modified:
llvm/trunk/lib/Transforms/Scalar/JumpThreading.cpp
Modified: llvm/trunk/lib/Transforms/Scalar/JumpThreading.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/JumpThreading.cpp?rev=247793&r1=247792&r2=247793&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/JumpThreading.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/JumpThreading.cpp Wed Sep 16 08:27:30 2015
@@ -166,7 +166,7 @@ bool JumpThreading::runOnFunction(Functi
// Remove unreachable blocks from function as they may result in infinite
// loop. We do threading if we found something profitable. Jump threading a
// branch can create other opportunities. If these opportunities form a cycle
- // i.e. if any jump treading is undoing previous threading in the path, then
+ // i.e. if any jump threading is undoing previous threading in the path, then
// we will loop forever. We take care of this issue by not jump threading for
// back edges. This works for normal cases but not for unreachable blocks as
// they may have cycle with no back edge.
@@ -263,7 +263,7 @@ static unsigned getJumpThreadDuplication
continue;
// Bail out if this instruction gives back a token type, it is not possible
- // to duplicate it if it used outside this BB.
+ // to duplicate it if it is used outside this BB.
if (I->getType()->isTokenTy() && I->isUsedOutsideOfBlock(BB))
return ~0U;
@@ -878,7 +878,7 @@ bool JumpThreading::SimplifyPartiallyRed
if (Value *AvailableVal =
FindAvailableLoadedValue(LoadedPtr, LoadBB, BBIt, 6)) {
- // If the value if the load is locally available within the block, just use
+ // If the value of the load is locally available within the block, just use
// it. This frequently occurs for reg2mem'd allocas.
//cerr << "LOAD ELIMINATED:\n" << *BBIt << *LI << "\n";
@@ -1270,7 +1270,7 @@ bool JumpThreading::ProcessBranchOnXOR(B
// Into:
// BB':
// %Y = icmp ne i32 %A, %B
- // br i1 %Z, ...
+ // br i1 %Y, ...
PredValueInfoTy XorOpValues;
bool isLHS = true;
@@ -1395,7 +1395,7 @@ bool JumpThreading::ThreadEdge(BasicBloc
return false;
}
- // And finally, do it! Start by factoring the predecessors is needed.
+ // And finally, do it! Start by factoring the predecessors if needed.
BasicBlock *PredBB;
if (PredBBs.size() == 1)
PredBB = PredBBs[0];
@@ -1538,7 +1538,7 @@ bool JumpThreading::DuplicateCondBranchO
return false;
}
- // And finally, do it! Start by factoring the predecessors is needed.
+ // And finally, do it! Start by factoring the predecessors if needed.
BasicBlock *PredBB;
if (PredBBs.size() == 1)
PredBB = PredBBs[0];
More information about the llvm-commits
mailing list