diff options
author | Dan Gohman <gohman@apple.com> | 2009-09-09 17:17:19 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-09-09 17:17:19 +0000 |
commit | 842dee44b543ba5fc9fc2e7c12a15b444827046f (patch) | |
tree | af90d6055c552de26cc669874a833ddfe506bec9 /lib/Transforms/Scalar | |
parent | 9c0aa853377eaa36c0521b5cb29e52fbb7a0dda0 (diff) | |
download | external_llvm-842dee44b543ba5fc9fc2e7c12a15b444827046f.zip external_llvm-842dee44b543ba5fc9fc2e7c12a15b444827046f.tar.gz external_llvm-842dee44b543ba5fc9fc2e7c12a15b444827046f.tar.bz2 |
Fix an 80-column violation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81354 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar')
-rw-r--r-- | lib/Transforms/Scalar/LoopUnswitch.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Transforms/Scalar/LoopUnswitch.cpp b/lib/Transforms/Scalar/LoopUnswitch.cpp index 1662bdb..5ecaaef 100644 --- a/lib/Transforms/Scalar/LoopUnswitch.cpp +++ b/lib/Transforms/Scalar/LoopUnswitch.cpp @@ -942,9 +942,9 @@ void LoopUnswitch::RewriteLoopBodyWithConditionConstant(Loop *L, Value *LIC, PN->setIncomingValue(PN->getBasicBlockIndex(Switch), UndefValue::get(PN->getType())); // Tell the domtree about the new block. We don't fully update - // the domtree here -- instead we force it to do a full recomputation - // after the pass is complete -- but we do need to inform it of - // new blocks. + // the domtree here -- instead we force it to do a full + // recomputation after the pass is complete -- but we do need to + // inform it of new blocks. if (DT) DT->addNewBlock(Abort, NewSISucc); break; |