forked from OSchip/llvm-project
Remove inappropriate if-clause in regex name resolution that was
causing modules that haven't already been parsed from being searched. llvm-svn: 117383
This commit is contained in:
parent
b3bcf529fc
commit
6dfb484139
|
@ -168,8 +168,7 @@ BreakpointResolverName::SearchCallback
|
|||
case Breakpoint::Regexp:
|
||||
if (context.module_sp)
|
||||
{
|
||||
if (m_func_name_type_mask & (eFunctionNameTypeBase | eFunctionNameTypeFull))
|
||||
context.module_sp->FindSymbolsMatchingRegExAndType (m_regex, eSymbolTypeCode, sym_list);
|
||||
context.module_sp->FindSymbolsMatchingRegExAndType (m_regex, eSymbolTypeCode, sym_list);
|
||||
context.module_sp->FindFunctions (m_regex, true, func_list);
|
||||
}
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue