blob: fce8593adb4931d601cef3b216f89c42d9f7b9f7 [file] [log] [blame]
/* PR rtl-optimization/63637 */
/* { dg-do compile } */
/* { dg-options "-O2" } */
int
foo (void)
{
int a, b, c, d, e, f;
asm ("# Magic instruction" : "=r" (a), "=r" (d));
asm ("# Magic instruction" : "=r" (b), "=r" (e));
asm ("# Magic instruction" : "=r" (c), "=r" (f));
return a + b + c;
}
/* { dg-final { scan-assembler-times "# Magic instruction" 3 } } */