diff options
Diffstat (limited to 'lib/Transforms/Scalar/LoopUnrollPass.cpp')
| -rw-r--r-- | lib/Transforms/Scalar/LoopUnrollPass.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Transforms/Scalar/LoopUnrollPass.cpp b/lib/Transforms/Scalar/LoopUnrollPass.cpp index 634215c9770f3..e955821effa0d 100644 --- a/lib/Transforms/Scalar/LoopUnrollPass.cpp +++ b/lib/Transforms/Scalar/LoopUnrollPass.cpp @@ -888,7 +888,7 @@ bool llvm::computeUnrollCount(      UP.Count = 0;      return false;    } -   +    // Check if the runtime trip count is too small when profile is available.    if (L->getHeader()->getParent()->hasProfileData()) {      if (auto ProfileTripCount = getLoopEstimatedTripCount(L)) { @@ -897,7 +897,7 @@ bool llvm::computeUnrollCount(        else          UP.AllowExpensiveTripCount = true;      } -  }   +  }    // Reduce count based on the type of unrolling and the threshold values.    UP.Runtime |= PragmaEnableUnroll || PragmaCount > 0 || UserUnrollCount;  | 
