We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
memory read
1 parent 08b7e13 commit 50ed085Copy full SHA for 50ed085
lldb/source/Commands/CommandObjectMemory.cpp
@@ -462,6 +462,13 @@ class CommandObjectMemoryRead : public CommandObjectParsed {
462
TypeResults results;
463
target->GetImages().FindTypes(search_first.get(), query, results);
464
TypeSP type_sp = results.GetFirstType();
465
+ if (!type_sp) {
466
+ // Retry, searching for typename as a mangled name.
467
+ query.SetSearchByMangledName(true);
468
+ TypeResults results;
469
+ target->GetImages().FindTypes(search_first.get(), query, results);
470
+ type_sp = results.GetFirstType();
471
+ }
472
473
if (!type_sp && lookup_type_name.GetCString()) {
474
LanguageType language_for_type =
0 commit comments