]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Revert "Display the number of components BB vectorized"
authorRichard Biener <rguenther@suse.de>
Tue, 13 Jul 2021 06:04:34 +0000 (08:04 +0200)
committerRichard Biener <rguenther@suse.de>
Tue, 13 Jul 2021 06:04:55 +0000 (08:04 +0200)
This reverts commit c03cae4e066066278c8435c409829a9bf851e49f.

gcc/testsuite/g++.dg/vect/slp-pr87105.cc
gcc/testsuite/gcc.dg/vect/bb-slp-pr54400.c
gcc/tree-vect-slp.c

index 451a117e2d285900c694139151e5a45267776f9f..d07b1cd46b7703e03f040a08f14d612e559a7569 100644 (file)
@@ -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 } } } } }
index 7c46fa0e4640ff670f9724a88664b2d250bd7dd6..6b427aac774a0523c8ad85cf958f9c6b5c00aa9b 100644 (file)
@@ -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-*-* } } } */
index 86fa3c1b349dc1bbcb4421ff6d7893627a045dc4..97fba6a8414ff77c82ecb6403ad7ea27d918ea2d 100644 (file)
@@ -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");
                }
            }
        }