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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P2
           Keywords|needs-bisection             |
            Summary|[15/16 Regression]          |[15/16 Regression]
                   |libgcc/config/i386/32/sfp-m |libgcc/config/i386/32/sfp-m
                   |achine.h:7:3: error: 'asm'  |achine.h:7:3: error: 'asm'
                   |operand has impossible      |operand has impossible
                   |constraints or there are    |constraints or there are
                   |not enough registers        |not enough registers since
                   |                            |r15-9176
                 CC|                            |hubicka at gcc dot gnu.org,
                   |                            |jakub at gcc dot gnu.org,
                   |                            |vmakarov at gcc dot gnu.org

--- Comment #6 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
-m32 -march=skylake-avx512 -Os
int a, b, c, d, e, f;

void
foo ()
{
  int g[2] = { e, f };
  if ((g[0] | g[1]) != 0)
    __asm__ (""
             : "=r" (d), "=&r" (c), "=&r" (b), "=&r" (a)
             : "0" (0), "g" (g), "g" (g[1]), "g" (g[0]));
}
Started with r15-9176-g564e4e0819022925dd160e455ee44baf0fda5805

Reply via email to