[llvm] r254112 - Fix a typo introduced in previous patches

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


Author: davidxl
Date: Wed Nov 25 18:02:23 2015
New Revision: 254112

URL: http://llvm.org/viewvc/llvm-project?rev=254112&view=rev
Log:
Fix a typo introduced in previous patches

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=254112&r1=254111&r2=254112&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ProfileData/InstrProfData.inc (original)
+++ llvm/trunk/include/llvm/ProfileData/InstrProfData.inc Wed Nov 25 18:02:23 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