https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93780
Andrew Pinski <pinskia at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Target|x86_64-*-*, i?86-*-* |
Status|UNCONFIRMED |NEW
Last reconfirmed| |2020-02-17
Ever confirmed|0 |1
--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Reduced testcase [without includes] (which also fails with SSE and on aarch64):
using V [[gnu::vector_size(16)]] = float;
float f1(float);
float f() {
const float init[3] = {};
V v{};
__builtin_memcpy(&v, init, 3 * sizeof(float));
return f1(v[0]);
}