From: Xinliang David Li Date: Mon, 23 Nov 2015 17:05:45 +0000 (+0000) Subject: Fix comment not allowed in C90 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=cd0aaaa14cc16520b9cdd464971e51f10ecd2514;p=oota-llvm.git Fix comment not allowed in C90 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@253880 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ProfileData/InstrProfData.inc b/include/llvm/ProfileData/InstrProfData.inc index a51071123d7..0656c98fd69 100644 --- a/include/llvm/ProfileData/InstrProfData.inc +++ b/include/llvm/ProfileData/InstrProfData.inc @@ -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;