[llvm] r262937 - don't repeat function names in documentation comments; NFC
Sanjay Patel via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 8 08:26:40 PST 2016
Author: spatel
Date: Tue Mar 8 10:26:39 2016
New Revision: 262937
URL: http://llvm.org/viewvc/llvm-project?rev=262937&view=rev
Log:
don't repeat function names in documentation comments; NFC
Modified:
llvm/trunk/lib/Transforms/Utils/LoopUnroll.cpp
Modified: llvm/trunk/lib/Transforms/Utils/LoopUnroll.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Utils/LoopUnroll.cpp?rev=262937&r1=262936&r2=262937&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Utils/LoopUnroll.cpp (original)
+++ llvm/trunk/lib/Transforms/Utils/LoopUnroll.cpp Tue Mar 8 10:26:39 2016
@@ -44,8 +44,8 @@ using namespace llvm;
STATISTIC(NumCompletelyUnrolled, "Number of loops completely unrolled");
STATISTIC(NumUnrolled, "Number of loops unrolled (completely or otherwise)");
-/// RemapInstruction - Convert the instruction operands from referencing the
-/// current values into those specified by VMap.
+/// Convert the instruction operands from referencing the current values into
+/// those specified by VMap.
static inline void RemapInstruction(Instruction *I,
ValueToValueMapTy &VMap) {
for (unsigned op = 0, E = I->getNumOperands(); op != E; ++op) {
@@ -64,8 +64,8 @@ static inline void RemapInstruction(Inst
}
}
-/// FoldBlockIntoPredecessor - Folds a basic block into its predecessor if it
-/// only has one predecessor, and that predecessor only has one successor.
+/// Folds a basic block into its predecessor if it only has one predecessor, and
+/// that predecessor only has one successor.
/// The LoopInfo Analysis that is passed will be kept consistent. If folding is
/// successful references to the containing loop must be removed from
/// ScalarEvolution by calling ScalarEvolution::forgetLoop because SE may have
More information about the llvm-commits
mailing list