---
gcc/tree-vect-slp.cc | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/gcc/tree-vect-slp.cc b/gcc/tree-vect-slp.cc
index 4a30cf3d187..55c634f0dd9 100644
--- a/gcc/tree-vect-slp.cc
+++ b/gcc/tree-vect-slp.cc
@@ -137,12 +137,19 @@ _slp_tree::_slp_tree ()
this->lanes = 0;
SLP_TREE_TYPE (this) = undef_vec_info_type;
this->data = NULL;
+ if (dump_enabled_p ())
+ dump_printf_loc (MSG_NOTE, vect_location, "Created SLP node %p\n",
+ (void *) this);
}
/* Tear down a SLP node. */
_slp_tree::~_slp_tree ()
{
+ if (dump_enabled_p ())
+ dump_printf_loc (MSG_NOTE, vect_location, "Destroyed SLP node %p\n",
+ (void *) this);
+
if (this->prev_node)
this->prev_node->next_node = this->next_node;
else
--
2.43.0- Re: [RFC 3/9] Implement recording/gett... Christopher Bazley
- Re: [RFC 3/9] Implement recording... Richard Biener
- Re: [RFC 3/9] Implement recording/getting ... Richard Biener
- Re: [RFC 3/9] Implement recording/gett... Christopher Bazley
- Re: [RFC 3/9] Implement recording... Christopher Bazley
- Re: [RFC 3/9] Implement recor... Christopher Bazley
- Re: [RFC 3/9] Implement recor... Richard Biener
- [RFC 9/9] AArch64/SVE: Tests for use of predicated vect... Christopher Bazley
- [RFC 6/9] Fix vexed ownership of stmts passed to vect_b... Christopher Bazley
- Re: [RFC 6/9] Fix vexed ownership of stmts passed ... Richard Biener
- [RFC 4/9] Conditionally dump info on creation and destr... Christopher Bazley
- Re: [RFC 4/9] Conditionally dump info on creation ... Richard Biener
- [RFC 7/9] Update constant creation for BB SLP with pred... Christopher Bazley
- Re: [RFC 7/9] Update constant creation for BB SLP ... Richard Biener
- Re: [RFC 7/9] Update constant creation for BB ... Christopher Bazley
- Re: [RFC 7/9] Update constant creation for... Richard Biener
- Re: [RFC 7/9] Update constant creation... Christopher Bazley
- Re: [RFC 7/9] Update constant cre... Richard Biener
- Re: [RFC 7/9] Update constant... Richard Sandiford
- Re: [RFC 7/9] Update constant... Richard Biener
- Re: [RFC 7/9] Update constant... Christopher Bazley
