OSDN Git Service

Minor formatting fixes in LoopUnroll.cpp.
authorJustin Lebar <jlebar@google.com>
Tue, 10 May 2016 00:31:23 +0000 (00:31 +0000)
committerJustin Lebar <jlebar@google.com>
Tue, 10 May 2016 00:31:23 +0000 (00:31 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@268995 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Utils/LoopUnroll.cpp

index 10223c3..77314d7 100644 (file)
@@ -284,15 +284,13 @@ bool llvm::UnrollLoop(Loop *L, unsigned Count, unsigned TripCount,
   DEBUG(
       {
         bool HasConvergent = false;
-        for (auto &BB
-             : L->blocks())
+        for (auto &BB : L->blocks())
           for (auto &I : *BB)
             if (auto CS = CallSite(&I))
               HasConvergent |= CS.isConvergent();
         assert((!HasConvergent || TripMultiple % Count == 0) &&
                "Unroll count must divide trip multiple if loop contains a "
-               "convergent "
-               "operation.");
+               "convergent operation.");
       });
   // Don't output the runtime loop remainder if Count is a multiple of
   // TripMultiple.  Such a remainder is never needed, and is unsafe if the loop