diff options
Diffstat (limited to 'sys/i386')
-rw-r--r-- | sys/i386/include/profile.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/i386/include/profile.h b/sys/i386/include/profile.h index 0df3195..0692eee 100644 --- a/sys/i386/include/profile.h +++ b/sys/i386/include/profile.h @@ -94,14 +94,14 @@ mcount() \ * \ * selfpc = pc pushed by call to mcount \ */ \ - asm("movl 4(%%ebp),%0" : "=r" (selfpc)); \ + __asm("movl 4(%%ebp),%0" : "=r" (selfpc)); \ /* \ * frompc = pc pushed by call to mcount's caller. \ * The caller's stack frame has already been built, so %ebp is \ * the caller's frame pointer. The caller's raddr is in the \ * caller's frame following the caller's caller's frame pointer.\ */ \ - asm("movl (%%ebp),%0" : "=r" (frompc)); \ + __asm("movl (%%ebp),%0" : "=r" (frompc)); \ frompc = ((uintfptr_t *)frompc)[1]; \ _mcount(frompc, selfpc); \ } |