Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / 991129-1.c
blob038979a778bd338cc898479b74dae612f102d7ac
1 /* Test against a problem in push_reload. */
3 /* { dg-do compile } */
4 /* { dg-require-effective-target ia32 } */
5 /* { dg-options "-O2" } */
7 unsigned long foo (unsigned long long x, unsigned long y)
9 unsigned long a;
11 x += y;
13 asm ("" : "=a" (a) : "A" (x), "rm" (y));
15 return a;