Commit 676b4899 by Prathamesh Kulkarni Committed by Prathamesh Kulkarni

ipa-prop.c (ipcp_transform_function): Set fields m_vr and bits to NULL of…

ipa-prop.c (ipcp_transform_function): Set fields m_vr and bits to NULL of (*ipcp_transformations)][node->uid].

2016-10-09  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>

	* ipa-prop.c (ipcp_transform_function): Set fields m_vr and bits to NULL of
	(*ipcp_transformations)][node->uid].

From-SVN: r240903
parent b9233944
2016-10-09 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
* ipa-prop.c (ipcp_transform_function): Set fields m_vr and bits to NULL of
(*ipcp_transformations)][node->uid].
2016-10-09 John David Anglin <danglin@gcc.gnu.org> 2016-10-09 John David Anglin <danglin@gcc.gnu.org>
* config/pa/pa.h (BIGGEST_ALIGNMENT): Adjust comment. * config/pa/pa.h (BIGGEST_ALIGNMENT): Adjust comment.
......
...@@ -5677,6 +5677,9 @@ ipcp_transform_function (struct cgraph_node *node) ...@@ -5677,6 +5677,9 @@ ipcp_transform_function (struct cgraph_node *node)
fbi.bb_infos.release (); fbi.bb_infos.release ();
free_dominance_info (CDI_DOMINATORS); free_dominance_info (CDI_DOMINATORS);
(*ipcp_transformations)[node->uid].agg_values = NULL; (*ipcp_transformations)[node->uid].agg_values = NULL;
(*ipcp_transformations)[node->uid].bits = NULL;
(*ipcp_transformations)[node->uid].m_vr = NULL;
descriptors.release (); descriptors.release ();
if (!something_changed) if (!something_changed)
......
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