Skip to content

Commit 4053649

Browse files
author
Davide Italiano
committed
[Breakpoint] Remove unneded difference between upstream and github.
apple-llvm-split-commit: 8c18758c9eea635a5c7007c3ed7ceb0dcbe3d8a9 apple-llvm-split-dir: lldb/
1 parent b46c03f commit 4053649

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

lldb/source/Breakpoint/BreakpointResolverFileLine.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -231,13 +231,11 @@ BreakpointResolverFileLine::SearchCallback(SearchFilter &filter,
231231
search_file_spec.GetDirectory().Clear();
232232

233233
const size_t num_comp_units = context.module_sp->GetNumCompileUnits();
234-
const bool force_check_inlines =
235-
context.module_sp->GetSymbolVendor()->ForceInlineSourceFileCheck();
236234
for (size_t i = 0; i < num_comp_units; i++) {
237235
CompUnitSP cu_sp(context.module_sp->GetCompileUnitAtIndex(i));
238236
if (cu_sp) {
239237
if (filter.CompUnitPasses(*cu_sp))
240-
cu_sp->ResolveSymbolContext(search_file_spec, m_line_number, m_inlines | force_check_inlines,
238+
cu_sp->ResolveSymbolContext(search_file_spec, m_line_number, m_inlines,
241239
m_exact_match, eSymbolContextEverything,
242240
sc_list);
243241
}

0 commit comments

Comments
 (0)