[compiler-rt] r275632 - Fix a typeo.

George Burgess IV via llvm-commits llvm-commits at lists.llvm.org
Fri Jul 15 15:24:24 PDT 2016


Author: gbiv
Date: Fri Jul 15 17:24:24 2016
New Revision: 275632

URL: http://llvm.org/viewvc/llvm-project?rev=275632&view=rev
Log:
Fix a typeo.

(obligatory s/typeo/typo)

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=275632&r1=275631&r2=275632&view=diff
==============================================================================
--- compiler-rt/trunk/lib/profile/InstrProfilingFile.c (original)
+++ compiler-rt/trunk/lib/profile/InstrProfilingFile.c Fri Jul 15 17:24:24 2016
@@ -231,7 +231,7 @@ static void truncateCurrentFile(void) {
   /* Create the directory holding the file, if needed. */
   if (strchr(Filename, DIR_SEPARATOR)
 #if defined(DIR_SEPARATOR_2)
-      || strchr(Filename, DIR_SEPERATOR_2)
+      || strchr(Filename, DIR_SEPARATOR_2)
 #endif
           ) {
     char *Copy = (char *)COMPILER_RT_ALLOCA(Length + 1);




More information about the llvm-commits mailing list