Skip to content

Commit 9269af7

Browse files
committed
fixup! fix after rebase
1 parent f43ca85 commit 9269af7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2494,7 +2494,7 @@ SymbolFileDWARF::ResolveFunctionCallLabel(const FunctionCallLabel &label) {
24942494

24952495
m_index->GetFunctions(info, *this, {}, [&](DWARFDIE entry) {
24962496
if (entry.GetAttributeValueAsUnsigned(llvm::dwarf::DW_AT_declaration, 0))
2497-
return true;
2497+
return IterationAction::Continue;
24982498

24992499
// We don't check whether the specification DIE for this function
25002500
// corresponds to the declaration DIE because the declaration might be in
@@ -2503,7 +2503,7 @@ SymbolFileDWARF::ResolveFunctionCallLabel(const FunctionCallLabel &label) {
25032503
// rely on the mangled name within the module to be enough to find us the
25042504
// unique definition.
25052505
die = entry;
2506-
return false;
2506+
return IterationAction::Stop;
25072507
});
25082508

25092509
if (die.GetAttributeValueAsUnsigned(llvm::dwarf::DW_AT_declaration, 0))

0 commit comments

Comments
 (0)