Remove unused function ipa_free_edge_args_substructures

2018-05-16  Martin Jambor  <mjambor@suse.cz>

	* ipa-prop.c (ipa_free_all_edge_args): Remove.
	* ipa-prop.h (ipa_free_all_edge_args): Likewise.

From-SVN: r260295
This commit is contained in:
Martin Jambor 2018-05-16 18:22:56 +02:00 committed by Martin Jambor
parent 6747254bba
commit 73264a8d66
3 changed files with 5 additions and 11 deletions

View File

@ -1,3 +1,8 @@
2018-05-16 Martin Jambor <mjambor@suse.cz>
* ipa-prop.c (ipa_free_all_edge_args): Remove.
* ipa-prop.h (ipa_free_all_edge_args): Likewise.
2018-05-16 Wilco Dijkstra <wdijkstr@arm.com>
* config/aarch64/aarch64.md (fma<mode>4): Change into expand pattern.

View File

@ -3708,16 +3708,6 @@ ipa_check_create_edge_args (void)
ipa_vr_hash_table = hash_table<ipa_vr_ggc_hash_traits>::create_ggc (37);
}
/* Frees all dynamically allocated structures that the argument info points
to. */
void
ipa_free_edge_args_substructures (struct ipa_edge_args *args)
{
vec_free (args->jump_functions);
*args = ipa_edge_args ();
}
/* Free all ipa_edge structures. */
void

View File

@ -664,7 +664,6 @@ extern GTY(()) vec<ipcp_transformation_summary, va_gc> *ipcp_transformations;
void ipa_create_all_node_params (void);
void ipa_create_all_edge_args (void);
void ipa_check_create_edge_args (void);
void ipa_free_edge_args_substructures (struct ipa_edge_args *);
void ipa_free_all_node_params (void);
void ipa_free_all_edge_args (void);
void ipa_free_all_structures_after_ipa_cp (void);