Skip to content
Snippets Groups Projects
Commit 8c0ee215 authored by Jim Ingham's avatar Jim Ingham
Browse files

Symbol may not have a demangled name, use GetName to get the best name available in this case.

llvm-svn: 131527
parent 832332d7
No related branches found
No related tags found
No related merge requests found
......@@ -633,7 +633,7 @@ CommandCompletions::SymbolCompleter::SearchCallback (
}
else if (sc.symbol && sc.symbol->GetAddressRangePtr())
{
m_match_set.insert (sc.symbol->GetMangled().GetDemangledName());
m_match_set.insert (sc.symbol->GetMangled().GetName());
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment