dwarf_loader: Remove unused 'dcus' argument from cu__finalize()

Not used at all, ditch it.

Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
Arnaldo Carvalho de Melo 2021-08-05 16:42:09 -03:00
parent 2bb04ecf79
commit 6fd4377a0d
1 changed files with 3 additions and 3 deletions

View File

@ -2470,7 +2470,7 @@ static int class_member__cache_byte_size(struct tag *tag, struct cu *cu,
return 0;
}
static int cu__finalize(struct cu *cu, struct dwarf_cu *dcu, struct conf_load *conf)
static int cu__finalize(struct cu *cu, struct conf_load *conf)
{
cu__for_all_tags(cu, class_member__cache_byte_size, conf);
if (conf && conf->steal) {
@ -2483,7 +2483,7 @@ static int finalize_cu_immediately(struct cus *cus, struct cu *cu,
struct dwarf_cu *dcu,
struct conf_load *conf)
{
int lsk = cu__finalize(cu, dcu, conf);
int lsk = cu__finalize(cu, conf);
switch (lsk) {
case LSK__DELETE:
cu__delete(cu);
@ -2895,7 +2895,7 @@ static int cus__load_module(struct cus *cus, struct conf_load *conf,
}
if (type_cu != NULL) {
type_lsk = cu__finalize(type_cu, &type_dcu, conf);
type_lsk = cu__finalize(type_cu, conf);
if (type_lsk == LSK__KEEPIT) {
cus__add(cus, type_cu);
}