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

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