[compiler-rt] r254113 - Sync up with master InstrProfData.inc

Xinliang David Li via llvm-commits llvm-commits at lists.llvm.org
Wed Nov 25 16:03:34 PST 2015


Author: davidxl
Date: Wed Nov 25 18:03:34 2015
New Revision: 254113

URL: http://llvm.org/viewvc/llvm-project?rev=254113&view=rev
Log:
Sync up with master InstrProfData.inc

Modified:
    compiler-rt/trunk/lib/profile/InstrProfData.inc

Modified: compiler-rt/trunk/lib/profile/InstrProfData.inc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/profile/InstrProfData.inc?rev=254113&r1=254112&r2=254113&view=diff
==============================================================================
--- compiler-rt/trunk/lib/profile/InstrProfData.inc (original)
+++ compiler-rt/trunk/lib/profile/InstrProfData.inc Wed Nov 25 18:03:34 2015
@@ -100,7 +100,7 @@ INSTR_PROF_RAW_HEADER(uint64_t, DataSize
 INSTR_PROF_RAW_HEADER(uint64_t, CountersSize, CountersSize)
 INSTR_PROF_RAW_HEADER(uint64_t, NamesSize,  NamesSize)
 INSTR_PROF_RAW_HEADER(uint64_t, CountersDelta, (uintptr_t)CountersBegin)
-INSTR_PROF_RAW_HEADER(int64_t, NamesDelta, (uintptr_t)NamesBegin)
+INSTR_PROF_RAW_HEADER(uint64_t, NamesDelta, (uintptr_t)NamesBegin)
 INSTR_PROF_RAW_HEADER(uint64_t, ValueKindLast, IPVK_Last)
 INSTR_PROF_RAW_HEADER(uint64_t, ValueDataSize, ValueDataSize)
 INSTR_PROF_RAW_HEADER(uint64_t, ValueDataDelta, (uintptr_t)ValueDataBegin)




More information about the llvm-commits mailing list