From: Richard Biener Date: Wed, 3 Jul 2024 11:49:58 +0000 (+0200) Subject: Remove redundant vector permute dump X-Git-Tag: basepoints/gcc-16~7735 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1dc2096537818bd80191e0d6015412e2906658bc;p=thirdparty%2Fgcc.git 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 --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