[llvm-commits] [llvm] r81354 - /llvm/trunk/lib/Transforms/Scalar/LoopUnswitch.cpp

Dan Gohman gohman at apple.com
Wed Sep 9 10:17:19 PDT 2009


Author: djg
Date: Wed Sep  9 12:17:19 2009
New Revision: 81354

URL: http://llvm.org/viewvc/llvm-project?rev=81354&view=rev
Log:
Fix an 80-column violation.

Modified:
    llvm/trunk/lib/Transforms/Scalar/LoopUnswitch.cpp

Modified: llvm/trunk/lib/Transforms/Scalar/LoopUnswitch.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/LoopUnswitch.cpp?rev=81354&r1=81353&r2=81354&view=diff

==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/LoopUnswitch.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/LoopUnswitch.cpp Wed Sep  9 12:17:19 2009
@@ -942,9 +942,9 @@
                 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;





More information about the llvm-commits mailing list