aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Scalar/LoopRotation.cpp
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2007-11-21 05:21:54 +0000
committerNick Lewycky <nicholas@mxc.ca>2007-11-21 05:21:54 +0000
commit2d3dd48902f44a506c94a23184e25ac6a451a2e4 (patch)
treebb33d2d1ecffb34ecc288f4da080cd81e796639f /lib/Transforms/Scalar/LoopRotation.cpp
parent23b89a6143afcc56518a0abed31e438fea792222 (diff)
downloadexternal_llvm-2d3dd48902f44a506c94a23184e25ac6a451a2e4.tar.gz
external_llvm-2d3dd48902f44a506c94a23184e25ac6a451a2e4.tar.bz2
external_llvm-2d3dd48902f44a506c94a23184e25ac6a451a2e4.zip
typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44262 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/LoopRotation.cpp')
-rw-r--r--lib/Transforms/Scalar/LoopRotation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/LoopRotation.cpp b/lib/Transforms/Scalar/LoopRotation.cpp
index c2e0d230a6..798143ddf9 100644
--- a/lib/Transforms/Scalar/LoopRotation.cpp
+++ b/lib/Transforms/Scalar/LoopRotation.cpp
@@ -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.