[llvm] r270349 - bug fix: trim section specifier name length

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


Author: davidxl
Date: Sat May 21 20:21:21 2016
New Revision: 270349

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

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=270349&r1=270348&r2=270349&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ProfileData/InstrProfData.inc (original)
+++ llvm/trunk/include/llvm/ProfileData/InstrProfData.inc Sat May 21 20:21:21 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