Skip to content

Commit a44c1f6

Browse files
Michael137github-actions[bot]
authored andcommitted
Automerge: [lldb][DWARFASTParserClang][NFC] Remove unused parameter to CompleteRecordType (#120456)
Became unused since the recent llvm/llvm-project#110648
2 parents f05457b + 6fd267d commit a44c1f6

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2052,7 +2052,6 @@ bool DWARFASTParserClang::ParseTemplateParameterInfos(
20522052
}
20532053

20542054
bool DWARFASTParserClang::CompleteRecordType(const DWARFDIE &die,
2055-
lldb_private::Type *type,
20562055
const CompilerType &clang_type) {
20572056
const dw_tag_t tag = die.Tag();
20582057
SymbolFileDWARF *dwarf = die.GetDWARF();
@@ -2189,7 +2188,7 @@ bool DWARFASTParserClang::CompleteTypeFromDWARF(
21892188
case DW_TAG_structure_type:
21902189
case DW_TAG_union_type:
21912190
case DW_TAG_class_type:
2192-
CompleteRecordType(die, type, clang_type);
2191+
CompleteRecordType(die, clang_type);
21932192
break;
21942193
case DW_TAG_enumeration_type:
21952194
CompleteEnumType(die, type, clang_type);

lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,6 @@ class DWARFASTParserClang : public lldb_private::plugin::dwarf::DWARFASTParser {
421421
const lldb_private::CompilerType &class_clang_type);
422422

423423
bool CompleteRecordType(const lldb_private::plugin::dwarf::DWARFDIE &die,
424-
lldb_private::Type *type,
425424
const lldb_private::CompilerType &clang_type);
426425
bool CompleteEnumType(const lldb_private::plugin::dwarf::DWARFDIE &die,
427426
lldb_private::Type *type,

0 commit comments

Comments
 (0)