adjust SLP tree dumping

This also dumps the root node we eventually smuggle in.

2020-03-20  Richard Biener  <rguenther@suse.de>

	* tree-vect-slp.c (vect_analyze_slp_instance): Dump SLP tree
	from the possibly modified root.
This commit is contained in:
Richard Biener 2020-03-20 18:57:30 +01:00
parent a23eff1bd0
commit a89349e664
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2020-03-20 Richard Biener <rguenther@suse.de>
* tree-vect-slp.c (vect_analyze_slp_instance): Dump SLP tree
from the possibly modified root.
2020-03-20 Srinath Parvathaneni <srinath.parvathaneni@arm.com>
Andre Vieira <andre.simoesdiasvieira@arm.com>
Mihail Ionescu <mihail.ionescu@arm.com>

View File

@ -2435,7 +2435,8 @@ vect_analyze_slp_instance (vec_info *vinfo,
{
dump_printf_loc (MSG_NOTE, vect_location,
"Final SLP tree for instance:\n");
vect_print_slp_tree (MSG_NOTE, vect_location, node);
vect_print_slp_tree (MSG_NOTE, vect_location,
SLP_INSTANCE_TREE (new_instance));
}
return true;