Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr63637-4.c
blob7b36690bbcff8539660b18df0febfc4058d2ba15
1 /* PR rtl-optimization/63637 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2" } */
5 int
6 foo (void)
8 int a, b, c;
9 asm ("# Magic instruction" : "=r" (a) : "r" (0) : "eax", "memory");
10 asm ("# Magic instruction" : "=r" (b) : "r" (0) : "edx", "memory");
11 asm ("# Magic instruction" : "=r" (c) : "r" (0) : "ecx", "memory");
12 return a + b + c;
15 /* { dg-final { scan-assembler-times "# Magic instruction" 3 } } */