80 col. comment.
authorAndrew Trick <atrick@apple.com>
Tue, 7 Jan 2014 01:02:52 +0000 (01:02 +0000)
committerAndrew Trick <atrick@apple.com>
Tue, 7 Jan 2014 01:02:52 +0000 (01:02 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@198653 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/IndVarSimplify.cpp

index 6e141bd2d6acb99815dd52f9d7eb2cde49182d98..1076e50bc28cd5c1922b0ebdeaebcbc5dde6ea1a 100644 (file)
@@ -1827,8 +1827,8 @@ bool IndVarSimplify::runOnLoop(Loop *L, LPPassManager &LPM) {
       // Check preconditions for proper SCEVExpander operation. SCEV does not
       // express SCEVExpander's dependencies, such as LoopSimplify. Instead any
       // pass that uses the SCEVExpander must do it. This does not work well for
-      // loop passes because SCEVExpander makes assumptions about all loops, while
-      // LoopPassManager only forces the current loop to be simplified.
+      // loop passes because SCEVExpander makes assumptions about all loops,
+      // while LoopPassManager only forces the current loop to be simplified.
       //
       // FIXME: SCEV expansion has no way to bail out, so the caller must
       // explicitly check any assumptions made by SCEV. Brittle.