1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

Fix comment not allowed in C90

llvm-svn: 253880
This commit is contained in:
Xinliang David Li 2015-11-23 17:05:45 +00:00
parent 4e7d2b779f
commit a6bd292bad

View File

@ -234,9 +234,9 @@ COVMAP_FUNC_RECORD(const uint64_t, llvm::Type::getInt64Ty(Ctx), FuncHash, \
* 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;