OSDN Git Service

gcc/
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / i386 / pr33600.c
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
3 int f(int n)
4 {
5         int x;
6
7         asm("" : "=&c"(n), "=r"(x) : "1"(n), "0"(n));
8
9         return n;
10 }