aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/pr63637-4.c
blob: 7b36690bbcff8539660b18df0febfc4058d2ba15 (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) : "r" (0) : "eax", "memory");
  asm ("# Magic instruction" : "=r" (b) : "r" (0) : "edx", "memory");
  asm ("# Magic instruction" : "=r" (c) : "r" (0) : "ecx", "memory");
  return a + b + c;
}

/* { dg-final { scan-assembler-times "# Magic instruction" 3 } } */