[llvm] r257726 - llvm-profdata.cpp: Fix comment lines. [-Wdocumentation]
NAKAMURA Takumi via llvm-commits
llvm-commits at lists.llvm.org
Wed Jan 13 16:36:59 PST 2016
Author: chapuni
Date: Wed Jan 13 18:36:59 2016
New Revision: 257726
URL: http://llvm.org/viewvc/llvm-project?rev=257726&view=rev
Log:
llvm-profdata.cpp: Fix comment lines. [-Wdocumentation]
Modified:
llvm/trunk/tools/llvm-profdata/llvm-profdata.cpp
Modified: llvm/trunk/tools/llvm-profdata/llvm-profdata.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvm-profdata/llvm-profdata.cpp?rev=257726&r1=257725&r2=257726&view=diff
==============================================================================
--- llvm/trunk/tools/llvm-profdata/llvm-profdata.cpp (original)
+++ llvm/trunk/tools/llvm-profdata/llvm-profdata.cpp Wed Jan 13 18:36:59 2016
@@ -42,9 +42,9 @@ enum ProfileFormat { PF_None = 0, PF_Tex
// target execution count percentile, we compute the minimum number of blocks
// needed to reach this target and the minimum execution count of these blocks.
struct ProfileSummaryEntry {
- uint32_t Cutoff; //< The required percentile of total execution count.
- uint64_t MinBlockCount; //< The minimum execution count for this percentile.
- uint64_t NumBlocks; //< Number of blocks >= the minumum execution count.
+ uint32_t Cutoff; ///< The required percentile of total execution count.
+ uint64_t MinBlockCount; ///< The minimum execution count for this percentile.
+ uint64_t NumBlocks; ///< Number of blocks >= the minumum execution count.
};
class ProfileSummary {
More information about the llvm-commits
mailing list