[compiler-rt] r257232 - Fix typo in comment
Xinliang David Li via llvm-commits
llvm-commits at lists.llvm.org
Fri Jan 8 15:42:28 PST 2016
Author: davidxl
Date: Fri Jan 8 17:42:28 2016
New Revision: 257232
URL: http://llvm.org/viewvc/llvm-project?rev=257232&view=rev
Log:
Fix typo in comment
Modified:
compiler-rt/trunk/lib/profile/InstrProfilingFile.c
Modified: compiler-rt/trunk/lib/profile/InstrProfilingFile.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/profile/InstrProfilingFile.c?rev=257232&r1=257231&r2=257232&view=diff
==============================================================================
--- compiler-rt/trunk/lib/profile/InstrProfilingFile.c (original)
+++ compiler-rt/trunk/lib/profile/InstrProfilingFile.c Fri Jan 8 17:42:28 2016
@@ -214,7 +214,7 @@ int __llvm_profile_write_file(void) {
return -1;
}
- /* Check if there is llvm/runtime versino mismatch. */
+ /* Check if there is llvm/runtime version mismatch. */
if (GET_VERSION(__llvm_profile_get_version()) != INSTR_PROF_RAW_VERSION) {
PROF_ERR("LLVM Profile: runtime and instrumentation version mismatch : "
"expected %d, but get %d\n",
More information about the llvm-commits
mailing list