diff options
author | Xinliang David Li <davidxl@google.com> | 2016-05-22 01:21:21 +0000 |
---|---|---|
committer | Xinliang David Li <davidxl@google.com> | 2016-05-22 01:21:21 +0000 |
commit | b5023a084555f2e7ebfd0e5c27ae69d75e66b9ae (patch) | |
tree | 241b2d9671725e4cac4eb4f11b46ca660fc679f9 /include | |
parent | 9c5f275934a2a28181832d12d3578b19e52fec0c (diff) |
bug fix: trim section specifier name length
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@270349 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/ProfileData/InstrProfData.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/ProfileData/InstrProfData.inc b/include/llvm/ProfileData/InstrProfData.inc index fd318c04d67..75d7702cee0 100644 --- a/include/llvm/ProfileData/InstrProfData.inc +++ b/include/llvm/ProfileData/InstrProfData.inc @@ -600,9 +600,9 @@ ValueProfData *serializeValueProfDataFrom(ValueProfRecordClosure *Closure, /* Array of pointers. Each pointer points to a list * of value nodes associated with one value site. */ -#define INSTR_PROF_VALS_SECT_NAME __llvm_prf_values +#define INSTR_PROF_VALS_SECT_NAME __llvm_prf_vals /* Value profile nodes section. */ -#define INSTR_PROF_VNODES_SECT_NAME __llvm_prf_vnodes +#define INSTR_PROF_VNODES_SECT_NAME __llvm_prf_vnds #define INSTR_PROF_COVMAP_SECT_NAME __llvm_covmap #define INSTR_PROF_DATA_SECT_NAME_STR \ |