aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr63637-1.c
blob: 7a716f98c5ffab0b2fb60a2802f713cb9ef4a627 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* 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 } } */