On Thu, Oct 31, 2002 at 11:28:01AM +0000, Richard Earnshaw wrote: > __asm__ __volatile__( > "lock; incl %0" > :"+m" (*p)); No, that expands to the same thing. OTOH, using "=m" (*p) : "m" (*p) should work, and is probably the preferred solution. r~