From a6ec07ce2dcb8a1b5b8abb63bcf5ae23eae93f6e Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Wed, 11 Sep 2013 19:35:32 +0000 Subject: [PATCH] Fix typo llvm-svn: 190543 --- compiler-rt/lib/profile/GCDAProfiling.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/lib/profile/GCDAProfiling.c b/compiler-rt/lib/profile/GCDAProfiling.c index f80e062485e4..dcd766284351 100644 --- a/compiler-rt/lib/profile/GCDAProfiling.c +++ b/compiler-rt/lib/profile/GCDAProfiling.c @@ -206,7 +206,7 @@ static int map_file() { fseek(output_file, 0L, SEEK_END); file_size = ftell(output_file); - /* A size of 0 is invaild to `mmap'. Return a fail here, but don't issue an + /* A size of 0 is invalid to `mmap'. Return a fail here, but don't issue an * error message because it should "just work" for the user. */ if (file_size == 0) return -1; -- GitLab