[compiler-rt] r270350 - bug fix: trim section specifier name length

Xinliang David Li via llvm-commits llvm-commits at lists.llvm.org
Sat May 21 18:21:31 PDT 2016


Author: davidxl
Date: Sat May 21 20:21:31 2016
New Revision: 270350

URL: http://llvm.org/viewvc/llvm-project?rev=270350&view=rev
Log:
bug fix: trim section specifier name length

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=270350&r1=270349&r2=270350&view=diff
==============================================================================
--- compiler-rt/trunk/lib/profile/InstrProfData.inc (original)
+++ compiler-rt/trunk/lib/profile/InstrProfData.inc Sat May 21 20:21:31 2016
@@ -600,9 +600,9 @@ ValueProfData *serializeValueProfDataFro
 /* 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                                          \




More information about the llvm-commits mailing list