2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.dg / 991129-1.c
blob24faefddaff20cbc76b157adbbed1499cf4ceff6
1 /* Test against a problem in push_reload. */
3 /* { dg-do compile { target i?86-*-* } } */
4 /* { dg-options "-O2" } */
6 unsigned long foo (unsigned long long x, unsigned long y)
8 unsigned long a;
10 x += y;
12 asm ("" : "=a" (a) : "A" (x), "rm" (y));
14 return a;