https://gcc.gnu.org/g:1dc2096537818bd80191e0d6015412e2906658bc

commit r15-1818-g1dc2096537818bd80191e0d6015412e2906658bc
Author: Richard Biener <rguent...@suse.de>
Date:   Wed Jul 3 13:49:58 2024 +0200

    Remove redundant vector permute dump
    
    The following removes redundant dumping in vect permute vectorization.
    
            * tree-vect-slp.cc (vectorizable_slp_permutation_1): Remove
            redundant dump.

Diff:
---
 gcc/tree-vect-slp.cc | 10 ----------
 1 file changed, 10 deletions(-)

diff --git a/gcc/tree-vect-slp.cc b/gcc/tree-vect-slp.cc
index 22ed59a817d..a8bb08ea7be 100644
--- a/gcc/tree-vect-slp.cc
+++ b/gcc/tree-vect-slp.cc
@@ -9350,16 +9350,6 @@ vectorizable_slp_permutation_1 (vec_info *vinfo, 
gimple_stmt_iterator *gsi,
     }
 
   gcc_assert (perm.length () == SLP_TREE_LANES (node));
-  if (dump_p)
-    {
-      dump_printf_loc (MSG_NOTE, vect_location,
-                      "vectorizing permutation");
-      for (unsigned i = 0; i < perm.length (); ++i)
-       dump_printf (MSG_NOTE, " op%u[%u]", perm[i].first, perm[i].second);
-      if (repeating_p)
-       dump_printf (MSG_NOTE, " (repeat %d)\n", SLP_TREE_LANES (node));
-      dump_printf (MSG_NOTE, "\n");
-    }
 
   /* REPEATING_P is true if every output vector is guaranteed to use the
      same permute vector.  We can handle that case for both variable-length

Reply via email to