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