diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2018-04-23 00:48:42 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2018-04-23 00:48:42 +0000 |
commit | b5254241180e559264f2c087315bf4a858c1aac7 (patch) | |
tree | f4c912db6eba802e5928d9812866242aa67a88d1 /llvm/lib/Transforms/Scalar/SimpleLoopUnswitch.cpp | |
parent | 004b6c684219660d171e04678e8bf799f3d72741 (diff) | |
download | bcm5719-llvm-b5254241180e559264f2c087315bf4a858c1aac7.tar.gz bcm5719-llvm-b5254241180e559264f2c087315bf4a858c1aac7.zip |
[PM/LoopUnswitch] Fix comment typo. NFC.
llvm-svn: 330560
Diffstat (limited to 'llvm/lib/Transforms/Scalar/SimpleLoopUnswitch.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/SimpleLoopUnswitch.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/SimpleLoopUnswitch.cpp b/llvm/lib/Transforms/Scalar/SimpleLoopUnswitch.cpp index ff8e1c1bd3c..b6194d96cdf 100644 --- a/llvm/lib/Transforms/Scalar/SimpleLoopUnswitch.cpp +++ b/llvm/lib/Transforms/Scalar/SimpleLoopUnswitch.cpp @@ -881,7 +881,7 @@ static BasicBlock *buildClonedLoopBlocks( cast_or_null<BasicBlock>(VMap.lookup(ContinueSuccBB))) ClonedContinueSuccBB->removePredecessor(ClonedParentBB, /*DontDeleteUselessPHIs*/ true); - // Replace the cloned branch with an unconditional branch to the cloneed + // Replace the cloned branch with an unconditional branch to the cloned // unswitched successor. auto *ClonedSuccBB = cast<BasicBlock>(VMap.lookup(UnswitchedSuccBB)); ClonedParentBB->getTerminator()->eraseFromParent(); |