OSDN Git Service

gcc:
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / 991129-1.c
1 /* Test against a problem in push_reload.  */
2
3 /* { dg-do compile { target { { i?86-*-* x86_64-*-* } && ilp32 } } } */
4 /* { dg-options "-O2" } */
5
6 unsigned long foo (unsigned long long x, unsigned long y)
7 {
8     unsigned long a;
9
10     x += y;
11
12     asm ("" : "=a" (a) : "A" (x), "rm" (y));
13
14     return a;
15 }