llvm-profdata.cpp: Fix comment lines. [-Wdocumentation]

llvm-svn: 257726
This commit is contained in:
NAKAMURA Takumi 2016-01-14 00:36:59 +00:00
parent 8f8e3f245c
commit 1985875d61
1 changed files with 3 additions and 3 deletions

View File

@ -42,9 +42,9 @@ enum ProfileFormat { PF_None = 0, PF_Text, PF_Binary, PF_GCC };
// 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 {