diff options
author | Xinliang David Li <davidxl@google.com> | 2017-04-11 16:27:26 +0000 |
---|---|---|
committer | Xinliang David Li <davidxl@google.com> | 2017-04-11 16:27:26 +0000 |
commit | 577b9d41d60226eecfeafc25097aac91ad427756 (patch) | |
tree | 36221b9f0b4db8ece685b7c8f606d2bcde41fb46 | |
parent | 93bac56bf975808c984c9f4d33780f8dad460f2c (diff) | |
download | bcm5719-llvm-577b9d41d60226eecfeafc25097aac91ad427756.tar.gz bcm5719-llvm-577b9d41d60226eecfeafc25097aac91ad427756.zip |
Revert 299954 : test failure needs to be fixed
llvm-svn: 299960
-rw-r--r-- | compiler-rt/lib/profile/InstrProfData.inc | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/compiler-rt/lib/profile/InstrProfData.inc b/compiler-rt/lib/profile/InstrProfData.inc index 5f3540a2c8b..6ef1625d81c 100644 --- a/compiler-rt/lib/profile/InstrProfData.inc +++ b/compiler-rt/lib/profile/InstrProfData.inc @@ -622,19 +622,6 @@ serializeValueProfDataFrom(ValueProfRecordClosure *Closure, * specified via command line. */ #define INSTR_PROF_PROFILE_NAME_VAR __llvm_profile_filename -#ifdef _WIN32 -/* Runtime section names and name strings. */ -#define INSTR_PROF_DATA_SECT_NAME .lprfd -#define INSTR_PROF_NAME_SECT_NAME .lprfn -#define INSTR_PROF_CNTS_SECT_NAME .lprfc -/* Array of pointers. Each pointer points to a list - * of value nodes associated with one value site. - */ -#define INSTR_PROF_VALS_SECT_NAME .lprfv -/* Value profile nodes section. */ -#define INSTR_PROF_VNODES_SECT_NAME .lprfnd -#define INSTR_PROF_COVMAP_SECT_NAME .lcovmap -#else /* Runtime section names and name strings. */ #define INSTR_PROF_DATA_SECT_NAME __llvm_prf_data #define INSTR_PROF_NAME_SECT_NAME __llvm_prf_names @@ -646,7 +633,6 @@ serializeValueProfDataFrom(ValueProfRecordClosure *Closure, /* Value profile nodes section. */ #define INSTR_PROF_VNODES_SECT_NAME __llvm_prf_vnds #define INSTR_PROF_COVMAP_SECT_NAME __llvm_covmap -#endif #define INSTR_PROF_DATA_SECT_NAME_STR \ INSTR_PROF_QUOTE(INSTR_PROF_DATA_SECT_NAME) |