diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2005-02-15 21:59:53 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2005-02-15 21:59:53 +0000 |
commit | f232a4582da630df7f8c850775c1310bc3e5b766 (patch) | |
tree | 70348aca12b9f8a71f4c44727bcc9654f4b19999 /llvm/lib/Support | |
parent | f4425b0208713d93c39b87b224f7d20a5ffb7a35 (diff) | |
download | bcm5719-llvm-f232a4582da630df7f8c850775c1310bc3e5b766.tar.gz bcm5719-llvm-f232a4582da630df7f8c850775c1310bc3e5b766.zip |
Fix spelling
llvm-svn: 20201
Diffstat (limited to 'llvm/lib/Support')
-rw-r--r-- | llvm/lib/Support/FileUtilities.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/FileUtilities.cpp b/llvm/lib/Support/FileUtilities.cpp index f8191c51210..0a55bc83124 100644 --- a/llvm/lib/Support/FileUtilities.cpp +++ b/llvm/lib/Support/FileUtilities.cpp @@ -119,7 +119,7 @@ int llvm::DiffFilesWithTolerance(const sys::Path &FileA, double AbsTol, double RelTol, std::string *Error) { try { - // Check for zero length files becasue some systems croak when you try to + // Check for zero length files because some systems croak when you try to // mmap an empty file. size_t A_size = FileA.getSize(); size_t B_size = FileB.getSize(); |