https://gcc.gnu.org/bugzilla/show_bug.cgi?id=124126
Andrew Pinski <pinskia at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Last reconfirmed| |2026-02-17
Ever confirmed|0 |1
--- Comment #6 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
aarch64_init_ls64_builtins_types is broken.
tree node_type = get_typenode_from_name (UINT64_TYPE);
tree array_type = build_array_type_nelts (node_type, 8);
SET_TYPE_MODE (array_type, V8DImode);
This is wrong and causes the issues in general as before you select the array
type that has BLKmode but afterwards you select the array that has V8DImode.
I don't know why it started to fail now though.