diff options
author | Richard Biener <rguenther@suse.de> | 2021-07-13 08:04:34 +0200 |
---|---|---|
committer | Richard Biener <rguenther@suse.de> | 2021-07-13 08:04:55 +0200 |
commit | f546e2b6cc5c610ae18aac274d0d6493f2da3801 (patch) | |
tree | 2cc90901f13a850603e96c4773ae96a59f780664 /gcc | |
parent | 063eba7ca73030139a3bf822ed127cf09b2fc226 (diff) | |
download | gcc-f546e2b6cc5c610ae18aac274d0d6493f2da3801.zip gcc-f546e2b6cc5c610ae18aac274d0d6493f2da3801.tar.gz gcc-f546e2b6cc5c610ae18aac274d0d6493f2da3801.tar.bz2 |
Revert "Display the number of components BB vectorized"
This reverts commit c03cae4e066066278c8435c409829a9bf851e49f.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/g++.dg/vect/slp-pr87105.cc | 2 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/vect/bb-slp-pr54400.c | 2 | ||||
-rw-r--r-- | gcc/tree-vect-slp.c | 12 |
3 files changed, 6 insertions, 10 deletions
diff --git a/gcc/testsuite/g++.dg/vect/slp-pr87105.cc b/gcc/testsuite/g++.dg/vect/slp-pr87105.cc index 451a117..d07b1cd 100644 --- a/gcc/testsuite/g++.dg/vect/slp-pr87105.cc +++ b/gcc/testsuite/g++.dg/vect/slp-pr87105.cc @@ -99,7 +99,7 @@ void quadBoundingBoxA(const Point bez[3], Box& bBox) noexcept { // We should have if-converted everything down to straight-line code // { dg-final { scan-tree-dump-times "<bb \[0-9\]+>" 1 "slp2" } } -// { dg-final { scan-tree-dump-times "optimized: basic block part" 1 "slp2" { xfail { { ! vect_element_align } && { ! vect_hw_misalign } } } } } +// { dg-final { scan-tree-dump-times "basic block part vectorized" 1 "slp2" { xfail { { ! vect_element_align } && { ! vect_hw_misalign } } } } } // It's a bit awkward to detect that all stores were vectorized but the // following more or less does the trick // { dg-final { scan-tree-dump "vect_\[^\r\m\]* = MIN" "slp2" { xfail { { ! vect_element_align } && { ! vect_hw_misalign } } } } } diff --git a/gcc/testsuite/gcc.dg/vect/bb-slp-pr54400.c b/gcc/testsuite/gcc.dg/vect/bb-slp-pr54400.c index 7c46fa0..6b427aa 100644 --- a/gcc/testsuite/gcc.dg/vect/bb-slp-pr54400.c +++ b/gcc/testsuite/gcc.dg/vect/bb-slp-pr54400.c @@ -39,5 +39,5 @@ main () } /* We are lacking an effective target for .REDUC_PLUS support. */ -/* { dg-final { scan-tree-dump-times "optimized: basic block part" 3 "slp2" { target x86_64-*-* } } } */ +/* { dg-final { scan-tree-dump-times "basic block part vectorized" 3 "slp2" { target x86_64-*-* } } } */ /* { dg-final { scan-tree-dump-not " = VEC_PERM_EXPR" "slp2" { target x86_64-*-* } } } */ diff --git a/gcc/tree-vect-slp.c b/gcc/tree-vect-slp.c index 86fa3c1..97fba6a 100644 --- a/gcc/tree-vect-slp.c +++ b/gcc/tree-vect-slp.c @@ -5865,16 +5865,12 @@ vect_slp_region (vec<basic_block> bbs, vec<data_reference_p> datarefs, if (GET_MODE_SIZE (bb_vinfo->vector_mode).is_constant (&bytes)) dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, vect_location, - "basic block part with %u components " - "vectorized using %wu byte vectors\n", - instance->subgraph_entries.length (), - bytes); + "basic block part vectorized using %wu " + "byte vectors\n", bytes); else dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, vect_location, - "basic block part with %u components " - "vectorized using variable length " - "vectors\n", - instance->subgraph_entries.length ()); + "basic block part vectorized using " + "variable length vectors\n"); } } } |