[compiler-rt] r190543 - Fix typo
Bill Wendling
isanbard at gmail.com
Wed Sep 11 12:35:32 PDT 2013
Author: void
Date: Wed Sep 11 14:35:32 2013
New Revision: 190543
URL: http://llvm.org/viewvc/llvm-project?rev=190543&view=rev
Log:
Fix typo
Modified:
compiler-rt/trunk/lib/profile/GCDAProfiling.c
Modified: compiler-rt/trunk/lib/profile/GCDAProfiling.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/profile/GCDAProfiling.c?rev=190543&r1=190542&r2=190543&view=diff
==============================================================================
--- compiler-rt/trunk/lib/profile/GCDAProfiling.c (original)
+++ compiler-rt/trunk/lib/profile/GCDAProfiling.c Wed Sep 11 14:35:32 2013
@@ -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;
More information about the llvm-commits
mailing list