https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100167
Bug ID: 100167 Summary: GCC configured for power10 fails the gcc.target/powerpc/fold-vec-div-longlong.c test Product: gcc Version: 11.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: testsuite Assignee: unassigned at gcc dot gnu.org Reporter: meissner at gcc dot gnu.org Target Milestone: --- If you configure GCC using --with-cpu=power10, the fold-vec-div-longlong.c fails. This is due to the test being written for an earlier generation of Power computer where it needs to move the vector elements over to the GPR registers to do vector long long divide. With power10 code generation, the code is replaced by a single 'vdivsd' or 'vdivud' instruction. The test needs to be adjusted to disable power10 code generation.