[llvm] r259814 - Fix format in comment

Xinliang David Li via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 4 11:14:10 PST 2016


Author: davidxl
Date: Thu Feb  4 13:14:10 2016
New Revision: 259814

URL: http://llvm.org/viewvc/llvm-project?rev=259814&view=rev
Log:
Fix format in comment

Modified:
    llvm/trunk/include/llvm/ProfileData/InstrProf.h

Modified: llvm/trunk/include/llvm/ProfileData/InstrProf.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ProfileData/InstrProf.h?rev=259814&r1=259813&r2=259814&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ProfileData/InstrProf.h (original)
+++ llvm/trunk/include/llvm/ProfileData/InstrProf.h Thu Feb  4 13:14:10 2016
@@ -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,




More information about the llvm-commits mailing list