[lld] r254111 - Fix a comment typo (cashe -> cache)

Hal Finkel via llvm-commits llvm-commits at lists.llvm.org
Wed Nov 25 15:54:54 PST 2015


Author: hfinkel
Date: Wed Nov 25 17:54:53 2015
New Revision: 254111

URL: http://llvm.org/viewvc/llvm-project?rev=254111&view=rev
Log:
Fix a comment typo (cashe -> cache)

Modified:
    lld/trunk/ELF/InputSection.cpp

Modified: lld/trunk/ELF/InputSection.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/InputSection.cpp?rev=254111&r1=254110&r2=254111&view=diff
==============================================================================
--- lld/trunk/ELF/InputSection.cpp (original)
+++ lld/trunk/ELF/InputSection.cpp Wed Nov 25 17:54:53 2015
@@ -259,7 +259,7 @@ MergeInputSection<ELFT>::getOffset(uintX
   if (Base != uintX_t(-1))
     return Base + Addend;
 
-  // Map the base to the offset in the output section and cashe it.
+  // Map the base to the offset in the output section and cache it.
   ArrayRef<uint8_t> D = this->getSectionData();
   StringRef Data((const char *)D.data(), D.size());
   StringRef Entry = Data.substr(Start, End - Start);




More information about the llvm-commits mailing list