aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2007-10-03 21:17:43 +0000
committerDevang Patel <dpatel@apple.com>2007-10-03 21:17:43 +0000
commitc1e2660c5d44154617144138a503088cd5a4c4d5 (patch)
treef34fbd4b32ba6fafe1b233b449d22b2bd2cb57b5 /lib
parentf476e8e7ce7b6aa0bec26aeb9e926148f7f9d02a (diff)
downloadexternal_llvm-c1e2660c5d44154617144138a503088cd5a4c4d5.zip
external_llvm-c1e2660c5d44154617144138a503088cd5a4c4d5.tar.gz
external_llvm-c1e2660c5d44154617144138a503088cd5a4c4d5.tar.bz2
Fix 80 col violation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42591 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Transforms/Scalar/LoopUnswitch.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Transforms/Scalar/LoopUnswitch.cpp b/lib/Transforms/Scalar/LoopUnswitch.cpp
index 5486d5d..200c55c 100644
--- a/lib/Transforms/Scalar/LoopUnswitch.cpp
+++ b/lib/Transforms/Scalar/LoopUnswitch.cpp
@@ -651,9 +651,9 @@ void LoopUnswitch::SplitExitEdges(const SmallVector<BasicBlock *, 8> &ExitBlocks
}
}
-/// UnswitchNontrivialCondition - We determined that the loop is profitable to unswitch when LIC
-/// equal Val. Split it into loop versions and test the condition outside of
-/// either loop. Return the loops created as Out1/Out2.
+/// UnswitchNontrivialCondition - We determined that the loop is profitable
+/// to unswitch when LIC equal Val. Split it into loop versions and test the
+/// condition outside of either loop. Return the loops created as Out1/Out2.
void LoopUnswitch::UnswitchNontrivialCondition(Value *LIC, Constant *Val,
Loop *L) {
Function *F = L->getHeader()->getParent();