]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Remove redundant vector permute dump
authorRichard Biener <rguenther@suse.de>
Wed, 3 Jul 2024 11:49:58 +0000 (13:49 +0200)
committerRichard Biener <rguenth@gcc.gnu.org>
Wed, 3 Jul 2024 13:05:33 +0000 (15:05 +0200)
The following removes redundant dumping in vect permute vectorization.

* tree-vect-slp.cc (vectorizable_slp_permutation_1): Remove
redundant dump.

gcc/tree-vect-slp.cc

index 22ed59a817d7ded5021041c7ddb94b3128b7987c..a8bb08ea7bed9541000c959d0b50e5d5716fa142 100644 (file)
@@ -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