aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/980520-1.c
blob: b11f0d3a893b14246cf47dd667c4c04f59348ecb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* { dg-do compile { target i?86-*-* x86_64-*-* } } */
/* { dg-options -O2 } */

int bug(void)
{
        unsigned long a, b;
   
        __asm__(""
                : "=d" (a)
                :
                : "memory");
        __asm__ __volatile__(""
                             :
                             : "g" (b)
                             : "memory");
        return a;
}