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

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