Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.target / i386 / 991129-1.c
blobd0d58e8f9e4264567c97cb293626230114f0da13
1 /* Test against a problem in push_reload. */
3 /* { dg-do compile } */
4 /* { dg-require-effective-target ilp32 } */
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;