[Lldb-commits] [PATCH] D140240: [lldb] Prevent false positives with simple template names in SymbolFileDWARF::FindTypes
Arthur Eubanks via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Fri Dec 16 12:00:21 PST 2022
aeubanks added inline comments.
================
Comment at: lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp:2519
+ GetTypeForDIE(die)->GetBaseName().AsCString();
+ if (name_bracket_index == llvm::StringRef::npos && base_name.contains('<'))
+ return true;
----------------
I'm looking into whether or not this can be sped up by checking if the type is templated some other way
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D140240/new/
https://reviews.llvm.org/D140240
More information about the lldb-commits
mailing list