Mercurial > hg > CbC > CbC_gcc
annotate gcc/testsuite/gcc.dg/pr63637-4.c @ 132:d34655255c78
update gcc-8.2
author | mir3636 |
---|---|
date | Thu, 25 Oct 2018 10:21:07 +0900 |
parents | 04ced10e8804 |
children |
rev | line source |
---|---|
111 | 1 /* PR rtl-optimization/63637 */ |
2 /* { dg-do compile } */ | |
3 /* { dg-options "-O2" } */ | |
4 | |
5 int | |
6 foo (void) | |
7 { | |
8 int a, b, c; | |
9 asm ("# Magic instruction" : "=r" (a) : "r" (0) : "memory"); | |
10 asm ("# Magic instruction" : "=r" (b) : "r" (0) : "memory"); | |
11 asm ("# Magic instruction" : "=r" (c) : "r" (0) : "memory"); | |
12 return a + b + c; | |
13 } | |
14 | |
15 /* { dg-final { scan-assembler-times "# Magic instruction" 3 } } */ |