diff options
author | Rui Ueyama <ruiu@google.com> | 2013-08-09 04:19:54 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2013-08-09 04:19:54 +0000 |
commit | 02d0bf0f80eb71f2b1e5b71ac2335f372a761d58 (patch) | |
tree | e4820cc54b6a7ee4cc5e3f40bd8ab50d8dc8be9e | |
parent | 8ec43c6a0fc30253cec1a65c68d689372bbb47b6 (diff) | |
download | bcm5719-llvm-02d0bf0f80eb71f2b1e5b71ac2335f372a761d58.tar.gz bcm5719-llvm-02d0bf0f80eb71f2b1e5b71ac2335f372a761d58.zip |
Fix spelling error. s/Libary/Library/g.
llvm-svn: 188049
-rw-r--r-- | lld/include/lld/Core/File.h | 2 | ||||
-rw-r--r-- | lld/lib/Core/File.cpp | 2 | ||||
-rw-r--r-- | lld/lib/ReaderWriter/YAML/ReaderWriterYAML.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lld/include/lld/Core/File.h b/lld/include/lld/Core/File.h index 30947a63cfb..0ac16f0f61a 100644 --- a/lld/include/lld/Core/File.h +++ b/lld/include/lld/Core/File.h @@ -215,7 +215,7 @@ protected: static atom_collection_empty<DefinedAtom> _noDefinedAtoms; static atom_collection_empty<UndefinedAtom> _noUndefinedAtoms; - static atom_collection_empty<SharedLibraryAtom> _noSharedLibaryAtoms; + static atom_collection_empty<SharedLibraryAtom> _noSharedLibraryAtoms; static atom_collection_empty<AbsoluteAtom> _noAbsoluteAtoms; StringRef _path; diff --git a/lld/lib/Core/File.cpp b/lld/lib/Core/File.cpp index a4148554410..bc3228f7f43 100644 --- a/lld/lib/Core/File.cpp +++ b/lld/lib/Core/File.cpp @@ -21,7 +21,7 @@ StringRef File::translationUnitSource() const { File::atom_collection_empty<DefinedAtom> File::_noDefinedAtoms; File::atom_collection_empty<UndefinedAtom> File::_noUndefinedAtoms; -File::atom_collection_empty<SharedLibraryAtom> File::_noSharedLibaryAtoms; +File::atom_collection_empty<SharedLibraryAtom> File::_noSharedLibraryAtoms; File::atom_collection_empty<AbsoluteAtom> File::_noAbsoluteAtoms; diff --git a/lld/lib/ReaderWriter/YAML/ReaderWriterYAML.cpp b/lld/lib/ReaderWriter/YAML/ReaderWriterYAML.cpp index 3d58c721f42..e2457880781 100644 --- a/lld/lib/ReaderWriter/YAML/ReaderWriterYAML.cpp +++ b/lld/lib/ReaderWriter/YAML/ReaderWriterYAML.cpp @@ -665,7 +665,7 @@ struct MappingTraits<const lld::File*> { return _noUndefinedAtoms; } virtual const atom_collection<lld::SharedLibraryAtom> &sharedLibrary()const{ - return _noSharedLibaryAtoms; + return _noSharedLibraryAtoms; } virtual const atom_collection<lld::AbsoluteAtom> &absolute() const { return _noAbsoluteAtoms; |