Commit a0a348b1 by Martin Liska Committed by Martin Liska

Call symbol_summary<>::release instead of ~symbol_summary (PR ipa/79285).

2017-01-31  Martin Liska  <mliska@suse.cz>

	PR ipa/79285
	* ipa-prop.c (ipa_free_all_node_params): Call release method
	instead of ~sumbol_summary to not to trigger double times
	dtor of hash_map.

From-SVN: r245058
parent 8b670f93
2017-01-31 Martin Liska <mliska@suse.cz>
PR ipa/79285
* ipa-prop.c (ipa_free_all_node_params): Call release method
instead of ~sumbol_summary to not to trigger double times
dtor of hash_map.
2017-01-31 Aldy Hernandez <aldyh@redhat.com>
PR tree-optimization/71691
......
......@@ -3574,7 +3574,7 @@ ipa_free_all_edge_args (void)
void
ipa_free_all_node_params (void)
{
ipa_node_params_sum->~ipa_node_params_t ();
ipa_node_params_sum->release ();
ipa_node_params_sum = NULL;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment