[gcc(refs/vendors/redhat/heads/gcc-10-branch)] adjust SLP tree dumping
Jakub Jelinek
jakub@gcc.gnu.org
Wed Mar 25 10:08:28 GMT 2020
https://gcc.gnu.org/g:a89349e664ff420f33612d47e486954de5848e49
commit a89349e664ff420f33612d47e486954de5848e49
Author: Richard Biener <rguenther@suse.de>
Date: Fri Mar 20 18:57:30 2020 +0100
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.
Diff:
---
gcc/ChangeLog | 5 +++++
gcc/tree-vect-slp.c | 3 ++-
2 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 9f50e43924e..967e4540bce 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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>
diff --git a/gcc/tree-vect-slp.c b/gcc/tree-vect-slp.c
index fb13af7965e..e43d03b43de 100644
--- a/gcc/tree-vect-slp.c
+++ b/gcc/tree-vect-slp.c
@@ -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;
More information about the Gcc-cvs
mailing list