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:
Caroline Tice 2010-10-26 18:33:57 +00:00
parent b3bcf529fc
commit 6dfb484139
1 changed files with 1 additions and 2 deletions

View File

@ -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;