emit: type__emit_fwd_decl() doesn't need a cu arg

Due to previous simplifications in the FOO__name() methods.

Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
Arnaldo Carvalho de Melo 2021-06-24 20:41:37 -03:00
parent c46f91ef6f
commit 9aa5db7acd
2 changed files with 4 additions and 8 deletions

View File

@ -53,7 +53,6 @@ struct type *type_emissions__find_definition(const struct type_emissions *emissi
}
static struct type *type_emissions__find_fwd_decl(const struct type_emissions *emissions,
const struct cu *cu,
const char *name)
{
struct type *pos;
@ -194,8 +193,7 @@ out:
return 1;
}
int type__emit_fwd_decl(struct type *ctype, const struct cu *cu,
struct type_emissions *emissions, FILE *fp)
int type__emit_fwd_decl(struct type *ctype, struct type_emissions *emissions, FILE *fp)
{
/* Have we already emitted this in this CU? */
if (ctype->fwd_decl_emitted)
@ -206,7 +204,7 @@ int type__emit_fwd_decl(struct type *ctype, const struct cu *cu,
return 0;
/* Ok, lets look at the previous CUs: */
if (type_emissions__find_fwd_decl(emissions, cu, name) != NULL) {
if (type_emissions__find_fwd_decl(emissions, name) != NULL) {
/*
* Yes, so lets mark it visited on this CU too,
* to speed up the lookup.
@ -264,8 +262,7 @@ next_indirection:
if (type__name(tag__type(type)) == NULL)
type__emit_definitions(type, cu, emissions, fp);
return type__emit_fwd_decl(tag__type(type), cu,
emissions, fp);
return type__emit_fwd_decl(tag__type(type), emissions, fp);
}
if (type__emit_definitions(type, cu, emissions, fp))
type__emit(type, cu, NULL, NULL, fp);

View File

@ -27,8 +27,7 @@ int ftype__emit_definitions(struct ftype *ftype, struct cu *cu,
struct type_emissions *emissions, FILE *fp);
int type__emit_definitions(struct tag *tag, struct cu *cu,
struct type_emissions *emissions, FILE *fp);
int type__emit_fwd_decl(struct type *ctype, const struct cu *cu,
struct type_emissions *emissions, FILE *fp);
int type__emit_fwd_decl(struct type *ctype, struct type_emissions *emissions, FILE *fp);
void type__emit(struct tag *tag_type, struct cu *cu,
const char *prefix, const char *suffix, FILE *fp);
struct type *type_emissions__find_definition(const struct type_emissions *temissions,