Author: Jonas Devlieghere Date: 2023-03-08T22:15:36-08:00 New Revision: 73058e330134d275070d49dba80e5fda50ec015b
URL: https://github.com/llvm/llvm-project/commit/73058e330134d275070d49dba80e5fda50ec015b DIFF: https://github.com/llvm/llvm-project/commit/73058e330134d275070d49dba80e5fda50ec015b.diff LOG: [lldb] Fix typo in SymbolVendorELF Added: Modified: lldb/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.cpp Removed: ################################################################################ diff --git a/lldb/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.cpp b/lldb/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.cpp index 3595966b42e4..55a663bb1b96 100644 --- a/lldb/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.cpp +++ b/lldb/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.cpp @@ -111,7 +111,7 @@ SymbolVendorELF::CreateInstance(const lldb::ModuleSP &module_sp, SectionList *module_section_list = module_sp->GetSectionList(); SectionList *objfile_section_list = dsym_objfile_sp->GetSectionList(); - if (!module_section_list || !!objfile_section_list) + if (!module_section_list || !objfile_section_list) return nullptr; static const SectionType g_sections[] = { _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits