https://gcc.gnu.org/bugzilla/show_bug.cgi?id=104786

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|[12.0]internal compiler     |ICE with VLA type and "=X"
                   |error with extern asm       |constraint on inline-asm

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Reduced testcase:
void h(void * di, int num)
{
    char (*t)[num] = di;
    __asm__ (  ""  : "=X"( *t));
}

Reply via email to