diff options
author | Richard Biener <rguenther@suse.de> | 2024-07-03 13:49:58 +0200 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2024-07-03 15:05:33 +0200 |
commit | 1dc2096537818bd80191e0d6015412e2906658bc (patch) | |
tree | 008fda8cf1632ba667a67282fcf70ae4078157d6 /gcc | |
parent | 8dc5ad3ce8d4d2cd6cc2b7516d282395502fdf7d (diff) | |
download | gcc-1dc2096537818bd80191e0d6015412e2906658bc.zip gcc-1dc2096537818bd80191e0d6015412e2906658bc.tar.gz gcc-1dc2096537818bd80191e0d6015412e2906658bc.tar.bz2 |
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.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/tree-vect-slp.cc | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/gcc/tree-vect-slp.cc b/gcc/tree-vect-slp.cc index 22ed59a..a8bb08e 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 |