2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.dg / 980520-1.c
blobe1401824f548bd7879c109e7e8ad1d7d8628aa61
1 /* { dg-do compile { target i?86-*-* } } */
2 /* { dg-options -O2 } */
4 int bug(void)
6 unsigned long a, b;
8 __asm__(""
9 : "=d" (a)
11 : "memory");
12 __asm__ __volatile__(""
14 : "g" (b)
15 : "memory");
16 return a;