https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63175
Martin Sebor <msebor at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |msebor at gcc dot gnu.org
--- Comment #4 from Martin Sebor <msebor at gcc dot gnu.org> ---
The test fails even on ppc64 because it looks for the string "basic block
vectorized using SLP" in the tree-slp-details dump but no such string is
emitted by GCC (it was removed in revision 199620 without adjusting the test).
The closest strings that are in the costmodel-bb-slp-9a.c.136t.slp2 file are
the following two:
/home/remote/msebor/fsf/gcc/trunk/gcc/testsuite/gcc.dg/vect/costmodel/ppc/costmodel-bb-slp-9a.c:20:13:
note: Basic block will be vectorized using SLP
/home/remote/msebor/fsf/gcc/trunk/gcc/testsuite/gcc.dg/vect/costmodel/ppc/costmodel-bb-slp-9a.c:20:13:
note: basic block vectorized
Replacing the existing string with one of the two above lets the test pass.