diff options
author | Hal Finkel <hfinkel@anl.gov> | 2015-11-25 23:54:53 +0000 |
---|---|---|
committer | Hal Finkel <hfinkel@anl.gov> | 2015-11-25 23:54:53 +0000 |
commit | f950595ea13cacaa85f9057f2cada09111bd8f65 (patch) | |
tree | d3572b8c4a9ca8d06a6d9d09a68ad934ec9e6fb9 | |
parent | ed966771da07bfe3494c73347e518e8f40e1e65f (diff) | |
download | bcm5719-llvm-f950595ea13cacaa85f9057f2cada09111bd8f65.tar.gz bcm5719-llvm-f950595ea13cacaa85f9057f2cada09111bd8f65.zip |
Fix a comment typo (cashe -> cache)
llvm-svn: 254111
-rw-r--r-- | lld/ELF/InputSection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/InputSection.cpp b/lld/ELF/InputSection.cpp index bb5c6515336..5cabae30f8c 100644 --- a/lld/ELF/InputSection.cpp +++ b/lld/ELF/InputSection.cpp @@ -259,7 +259,7 @@ MergeInputSection<ELFT>::getOffset(uintX_t Offset) { 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); |