From 70a65c28a7d7c80452dd9cabca3c6abfe59411a2 Mon Sep 17 00:00:00 2001 From: George Burgess IV Date: Fri, 15 Jul 2016 22:24:24 +0000 Subject: [PATCH] Fix a typeo. (obligatory s/typeo/typo) llvm-svn: 275632 --- compiler-rt/lib/profile/InstrProfilingFile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/lib/profile/InstrProfilingFile.c b/compiler-rt/lib/profile/InstrProfilingFile.c index b737baff405b..32762d14eef2 100644 --- a/compiler-rt/lib/profile/InstrProfilingFile.c +++ b/compiler-rt/lib/profile/InstrProfilingFile.c @@ -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);