[llvm] r253880 - Fix comment not allowed in C90

Xinliang David Li via llvm-commits llvm-commits at lists.llvm.org
Mon Nov 23 09:05:45 PST 2015


Author: davidxl
Date: Mon Nov 23 11:05:45 2015
New Revision: 253880

URL: http://llvm.org/viewvc/llvm-project?rev=253880&view=rev
Log:
Fix comment not allowed in C90

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=253880&r1=253879&r2=253880&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ProfileData/InstrProfData.inc (original)
+++ llvm/trunk/include/llvm/ProfileData/InstrProfData.inc Mon Nov 23 11:05:45 2015
@@ -234,9 +234,9 @@ COVMAP_FUNC_RECORD(const uint64_t, llvm:
  * value profiler.
  */
 typedef struct InstrProfValueData {
-  // Profiled value.
+  /* Profiled value. */
   uint64_t Value;
-  // Number of times the value appears in the training run.
+  /* Number of times the value appears in the training run. */
   uint64_t Count;
 } InstrProfValueData;
 




More information about the llvm-commits mailing list