typo
authorNick Lewycky <nicholas@mxc.ca>
Wed, 21 Nov 2007 05:21:54 +0000 (05:21 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Wed, 21 Nov 2007 05:21:54 +0000 (05:21 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44262 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/LoopRotation.cpp

index c2e0d230a6b4cb2d27897f77c3545fce3959aea6..798143ddf92399af10bdff752ceacbf29a5ffb65 100644 (file)
@@ -151,7 +151,7 @@ bool LoopRotate::rotateLoop(Loop *Lp, LPPassManager &LPM) {
   BranchInst *BI = dyn_cast<BranchInst>(OrigHeader->getTerminator());
   if (!BI)
     return false;
-  assert (BI->isConditional() && "Branch Instruction is not condiitional");
+  assert (BI->isConditional() && "Branch Instruction is not conditional");
 
   // Updating PHInodes in loops with multiple exits adds complexity. 
   // Keep it simple, and restrict loop rotation to loops with one exit only.