diff options
author | Adrian Prantl <aprantl@apple.com> | 2019-10-01 17:08:41 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2019-10-01 17:08:41 +0000 |
commit | c7f19caaead64868b0e64bf2d2e75eed0b3f9946 (patch) | |
tree | eaf12fe4dd2c9a275d7c2a79e966104ebf6f0a8b /lldb/source/Plugins/SymbolFile | |
parent | 771d464f49ee029ec97a57485b09756fbdf92e40 (diff) | |
download | bcm5719-llvm-c7f19caaead64868b0e64bf2d2e75eed0b3f9946.tar.gz bcm5719-llvm-c7f19caaead64868b0e64bf2d2e75eed0b3f9946.zip |
Typo (NFC)
llvm-svn: 373353
Diffstat (limited to 'lldb/source/Plugins/SymbolFile')
-rw-r--r-- | lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp b/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp index e80bf594e4a..1eb6d3fa209 100644 --- a/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp +++ b/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp @@ -148,7 +148,7 @@ TypeSP DWARFASTParserClang::ParseTypeFromDWO(const DWARFDIE &die, Log *log) { die.GetDeclContext(decl_context); TypeMap dwo_types; - // The type in the Clang module must have the same langage as the current CU. + // The type in the Clang module must have the same language as the current CU. LanguageSet languages; languages.Insert(die.GetCU()->GetLanguageType()); dwo_module_sp->GetSymbolFile()->FindTypes(decl_context, languages, dwo_types); @@ -156,8 +156,8 @@ TypeSP DWARFASTParserClang::ParseTypeFromDWO(const DWARFDIE &die, Log *log) { if (!IsClangModuleFwdDecl(die)) return TypeSP(); - // Since this this type is defined in one of the Clang modules imported by - // this symbol file, search all of them. + // Since this type is defined in one of the Clang modules imported + // by this symbol file, search all of them. auto &sym_file = die.GetCU()->GetSymbolFileDWARF(); for (const auto &name_module : sym_file.getExternalTypeModules()) { if (!name_module.second) |