https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90926
Jakub Jelinek <jakub at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jakub at gcc dot gnu.org --- Comment #3 from Jakub Jelinek <jakub at gcc dot gnu.org> --- Seems when init is a STRING_CST (or that with location wrapper around it), we don't call can_convert_array (which only handles initialization of vars with ARRAY_TYPE from CONSTRUCTORs), and can_convert_arg doesn't handle that. So, shall can_convert_arg handle that special case, initializing of ARRAY_TYPE from STRING_CST, or shall we call can_convert_array in that case which ought to have this as a special case, something else?