[LoopUnroll] Correct a debug message. NFC.
authorHaicheng Wu <haicheng@codeaurora.org>
Wed, 7 Sep 2016 21:30:16 +0000 (21:30 +0000)
committerHaicheng Wu <haicheng@codeaurora.org>
Wed, 7 Sep 2016 21:30:16 +0000 (21:30 +0000)
Differential Revision: https://reviews.llvm.org/D24299

llvm-svn: 280865

llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp

index 1a8c626..dbbffee 100644 (file)
@@ -649,7 +649,7 @@ static bool canUnrollCompletely(Loop *L, unsigned Threshold,
 
   if (UnrolledCost <= Threshold) {
     DEBUG(dbgs() << "  Can fully unroll, because unrolled cost: "
-                 << UnrolledCost << "<" << Threshold << "\n");
+                 << UnrolledCost << "<=" << Threshold << "\n");
     return true;
   }