https://gcc.gnu.org/bugzilla/show_bug.cgi?id=125871
Richard Biener <rguenth at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |testsuite-fail, wrong-code
Target Milestone|--- |17.0
Version|16.1.1 |17.0
CC| |rguenth at gcc dot gnu.org,
| |tnfchris at gcc dot gnu.org
--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
I'll note that
/* { dg-additional-options "-mavx512f" { target { i?86-*-* x86_64-*-* } } } */
/* { dg-require-effective-target avx512f_runtime { target i?86-*-* x86_64-*-* }
} */
is overly restrictive and should do
/* { dg-additional-options "-mavx512f" { target avx512f_runtime } } */
And gate the dump scans on { target avx512f }
I'll also note that we should really fixup check_vect () to gate AVX512
enabled features ...