[compiler-rt] r270338 - Fix typo
Xinliang David Li via llvm-commits
llvm-commits at lists.llvm.org
Sat May 21 16:06:39 PDT 2016
Author: davidxl
Date: Sat May 21 18:06:39 2016
New Revision: 270338
URL: http://llvm.org/viewvc/llvm-project?rev=270338&view=rev
Log:
Fix typo
Modified:
compiler-rt/trunk/lib/profile/InstrProfilingPlatformDarwin.c
compiler-rt/trunk/lib/profile/InstrProfilingPlatformOther.c
Modified: compiler-rt/trunk/lib/profile/InstrProfilingPlatformDarwin.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/profile/InstrProfilingPlatformDarwin.c?rev=270338&r1=270337&r2=270338&view=diff
==============================================================================
--- compiler-rt/trunk/lib/profile/InstrProfilingPlatformDarwin.c (original)
+++ compiler-rt/trunk/lib/profile/InstrProfilingPlatformDarwin.c Sat May 21 18:06:39 2016
@@ -56,5 +56,5 @@ ValueProfNode *__llvm_profile_begin_vnod
return &VNodesStart;
}
COMPILER_RT_VISIBILITY
-ValueProfNode *__llvm_profile_end_vnode(void) { return &VNodesEnd; }
+ValueProfNode *__llvm_profile_end_vnodes(void) { return &VNodesEnd; }
#endif
Modified: compiler-rt/trunk/lib/profile/InstrProfilingPlatformOther.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/profile/InstrProfilingPlatformOther.c?rev=270338&r1=270337&r2=270338&view=diff
==============================================================================
--- compiler-rt/trunk/lib/profile/InstrProfilingPlatformOther.c (original)
+++ compiler-rt/trunk/lib/profile/InstrProfilingPlatformOther.c Sat May 21 18:06:39 2016
@@ -86,6 +86,6 @@ ValueProfNode *__llvm_profile_begin_vnod
return 0;
}
COMPILER_RT_VISIBILITY
-ValueProfNode *__llvm_profile_end_vnode(void) { return 0; }
+ValueProfNode *__llvm_profile_end_vnodes(void) { return 0; }
#endif
More information about the llvm-commits
mailing list