[compiler-rt] r270339 - Fix a typo (darwin only)
Xinliang David Li via llvm-commits
llvm-commits at lists.llvm.org
Sat May 21 16:27:18 PDT 2016
Author: davidxl
Date: Sat May 21 18:27:18 2016
New Revision: 270339
URL: http://llvm.org/viewvc/llvm-project?rev=270339&view=rev
Log:
Fix a typo (darwin only)
Modified:
compiler-rt/trunk/lib/profile/InstrProfilingPlatformDarwin.c
Modified: compiler-rt/trunk/lib/profile/InstrProfilingPlatformDarwin.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/profile/InstrProfilingPlatformDarwin.c?rev=270339&r1=270338&r2=270339&view=diff
==============================================================================
--- compiler-rt/trunk/lib/profile/InstrProfilingPlatformDarwin.c (original)
+++ compiler-rt/trunk/lib/profile/InstrProfilingPlatformDarwin.c Sat May 21 18:27:18 2016
@@ -31,7 +31,7 @@ extern uint64_t
COMPILER_RT_VISIBILITY
extern ValueProfNode
- VNodestart __asm("section$start$__DATA$" INSTR_PROF_VNODES_SECT_NAME_STR);
+ VNodesStart __asm("section$start$__DATA$" INSTR_PROF_VNODES_SECT_NAME_STR);
COMPILER_RT_VISIBILITY
extern ValueProfNode
VNodesEnd __asm("section$end$__DATA$" INSTR_PROF_VNODES_SECT_NAME_STR);
More information about the llvm-commits
mailing list