PR rtl-optimization/63637
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr63637-1.c
blob9cc9750dd13dd84507f5085fcabe01d1d14b093f
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) : : "eax");
10 asm ("# Magic instruction" : "=r" (b) : : "edx");
11 asm ("# Magic instruction" : "=r" (c) : : "ecx");
12 return a + b + c;
15 /* { dg-final { scan-assembler-times "# Magic instruction" 1 } } */