https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77679
kargl at gcc dot gnu.org changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |kargl at gcc dot gnu.org
--- Comment #10 from kargl at gcc dot gnu.org ---
(In reply to Dominique d'Humieres from comment #8)
> > Fixed.
>
> Really? I still see the error
>
> Error: size of variable 'A.0' is too large
As Richard noted, the code is invalid because n(1)
is reference but never defined. n(1) likely contains
garbage. -Wuninitialized and.or -Wall should probably
catch this, but it currently doesn't.