[llvm] r264614 - [PGO] Update r264611 to use C-style comment

Adam Nemet via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 28 11:45:31 PDT 2016


Author: anemet
Date: Mon Mar 28 13:45:30 2016
New Revision: 264614

URL: http://llvm.org/viewvc/llvm-project?rev=264614&view=rev
Log:
[PGO] Update r264611 to use C-style comment

Modified:
    llvm/trunk/include/llvm/ProfileData/InstrProfData.inc

Modified: llvm/trunk/include/llvm/ProfileData/InstrProfData.inc
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ProfileData/InstrProfData.inc?rev=264614&r1=264613&r2=264614&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ProfileData/InstrProfData.inc (original)
+++ llvm/trunk/include/llvm/ProfileData/InstrProfData.inc Mon Mar 28 13:45:30 2016
@@ -73,8 +73,10 @@ INSTR_PROF_DATA(const uint64_t, llvm::Ty
 INSTR_PROF_DATA(const IntPtrT, llvm::Type::getInt64PtrTy(Ctx), CounterPtr, \
                 ConstantExpr::getBitCast(CounterPtr, \
                 llvm::Type::getInt64PtrTy(Ctx)))
-// This is used to map function pointers for the indirect call targets to
-// function name hashes during the conversion from raw to merged profile data.
+/* This is used to map function pointers for the indirect call targets to
+ * function name hashes during the conversion from raw to merged profile
+ * data.
+ */
 INSTR_PROF_DATA(const IntPtrT, llvm::Type::getInt8PtrTy(Ctx), FunctionPointer, \
                 FunctionAddr)
 INSTR_PROF_DATA(IntPtrT, llvm::Type::getInt8PtrTy(Ctx), Values, \




More information about the llvm-commits mailing list