diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2016-01-14 00:36:59 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2016-01-14 00:36:59 +0000 |
commit | 1985875d61a986f77ce3d9cbe5033fd7af4061eb (patch) | |
tree | ee4d8df993c2d39b1c01d0b684da637efd0f5461 /llvm/tools/llvm-profdata/llvm-profdata.cpp | |
parent | 8f8e3f245cbce2d826c3c9fd0380d95e9eb97b8d (diff) | |
download | bcm5719-llvm-1985875d61a986f77ce3d9cbe5033fd7af4061eb.tar.gz bcm5719-llvm-1985875d61a986f77ce3d9cbe5033fd7af4061eb.zip |
llvm-profdata.cpp: Fix comment lines. [-Wdocumentation]
llvm-svn: 257726
Diffstat (limited to 'llvm/tools/llvm-profdata/llvm-profdata.cpp')
-rw-r--r-- | llvm/tools/llvm-profdata/llvm-profdata.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/tools/llvm-profdata/llvm-profdata.cpp b/llvm/tools/llvm-profdata/llvm-profdata.cpp index 2ab77d4763c..a3995075aaf 100644 --- a/llvm/tools/llvm-profdata/llvm-profdata.cpp +++ b/llvm/tools/llvm-profdata/llvm-profdata.cpp @@ -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 { |