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 | 6edd9376d4fd9e63c9727ca2d02d7b21a3efeb65 (patch) | |
| tree | 088b63aea34e9dd0e06ea9cefb0635cfe3df0187 | |
| parent | 34dc99e2c5d95ed6a156f58fb9c4364a0ba7d109 (diff) | |
| download | bcm5719-llvm-6edd9376d4fd9e63c9727ca2d02d7b21a3efeb65.tar.gz bcm5719-llvm-6edd9376d4fd9e63c9727ca2d02d7b21a3efeb65.zip | |
bug fix: trim section specifier name length
llvm-svn: 270349
| -rw-r--r-- | llvm/include/llvm/ProfileData/InstrProfData.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/ProfileData/InstrProfData.inc b/llvm/include/llvm/ProfileData/InstrProfData.inc index fd318c04d67..75d7702cee0 100644 --- a/llvm/include/llvm/ProfileData/InstrProfData.inc +++ b/llvm/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 \ |

