From 3574759d8558e5f9d38e1be97d10a35329c75001 Mon Sep 17 00:00:00 2001 From: Devang Patel Date: Wed, 3 Oct 2007 21:17:43 +0000 Subject: [PATCH] Fix 80 col violation. llvm-svn: 42591 --- llvm/lib/Transforms/Scalar/LoopUnswitch.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp b/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp index 5486d5d298fc..200c55ca8817 100644 --- a/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp +++ b/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp @@ -651,9 +651,9 @@ void LoopUnswitch::SplitExitEdges(const SmallVector &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();