diff options
author | Xinliang David Li <davidxl@google.com> | 2016-02-04 19:14:10 +0000 |
---|---|---|
committer | Xinliang David Li <davidxl@google.com> | 2016-02-04 19:14:10 +0000 |
commit | b56be389c8565ba588d5580a9f9f0622829cb12f (patch) | |
tree | 648f197632836ee2763f1d121cf22c547d14f848 | |
parent | 402477d2ba857915b339d6155f09fcd54f28006a (diff) | |
download | bcm5719-llvm-b56be389c8565ba588d5580a9f9f0622829cb12f.tar.gz bcm5719-llvm-b56be389c8565ba588d5580a9f9f0622829cb12f.zip |
Fix format in comment
llvm-svn: 259814
-rw-r--r-- | llvm/include/llvm/ProfileData/InstrProf.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/llvm/include/llvm/ProfileData/InstrProf.h b/llvm/include/llvm/ProfileData/InstrProf.h index a4b2775886b..2d48c37c796 100644 --- a/llvm/include/llvm/ProfileData/InstrProf.h +++ b/llvm/include/llvm/ProfileData/InstrProf.h @@ -200,16 +200,14 @@ enum InstrProfValueKind : uint32_t { struct InstrProfRecord; -/// Extract value profile data for value site \p SiteIdx from \p InstrProfR +/// Get the value profile data for value site \p SiteIdx from \p InstrProfR /// and annotate the instruction \p Inst with the value profile meta data. void annotateValueSite(Module &M, Instruction &Inst, const InstrProfRecord &InstrProfR, InstrProfValueKind ValueKind, uint32_t SiteIndx); -/// Extract the value profile data from the \p Inst which is annotated with -/// value -/// profile meta data. Return false if there is no value data annotated, -/// otherwise -/// return true. +/// Extract the value profile data from \p Inst which is annotated with +/// value profile meta data. Return false if there is no value data annotated, +/// otherwise return true. bool getValueProfDataFromInst(const Instruction &Inst, InstrProfValueKind ValueKind, uint32_t MaxNumValueData, |