PR tree-optimization/81627
[official-gcc.git] / gcc / testsuite / gcc.dg / pr63637-5.c
blobfce8593adb4931d601cef3b216f89c42d9f7b9f7
1 /* PR rtl-optimization/63637 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2" } */
5 int
6 foo (void)
8 int a, b, c, d, e, f;
9 asm ("# Magic instruction" : "=r" (a), "=r" (d));
10 asm ("# Magic instruction" : "=r" (b), "=r" (e));
11 asm ("# Magic instruction" : "=r" (c), "=r" (f));
12 return a + b + c;
15 /* { dg-final { scan-assembler-times "# Magic instruction" 3 } } */