diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-07-23 10:59:18 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-07-23 10:59:18 +0000 |
commit | d35b0bc119816825a657f7c9c2a1f062e7048c39 (patch) | |
tree | 92094ee13ffb04d81a4f34674bb09da5f4b5b8ec /libc/sysdeps/linux/i386/bits/sigcontextinfo.h | |
parent | 40ee4cb9496ed037957db9790e5bd87604d45fe5 (diff) |
- fix asm and volatile keywords
Diffstat (limited to 'libc/sysdeps/linux/i386/bits/sigcontextinfo.h')
-rw-r--r-- | libc/sysdeps/linux/i386/bits/sigcontextinfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/i386/bits/sigcontextinfo.h b/libc/sysdeps/linux/i386/bits/sigcontextinfo.h index 6530ba6f3..b7367bac6 100644 --- a/libc/sysdeps/linux/i386/bits/sigcontextinfo.h +++ b/libc/sysdeps/linux/i386/bits/sigcontextinfo.h @@ -25,7 +25,7 @@ #define CALL_SIGHANDLER(handler, signo, ctx) \ do { \ int __tmp1, __tmp2, __tmp3, __tmp4; \ - __asm __volatile ("movl\t%%esp, %%edi\n\t" \ + __asm__ __volatile__ ("movl\t%%esp, %%edi\n\t" \ "andl\t$-16, %%esp\n\t" \ "subl\t%8, %%esp\n\t" \ "movl\t%%edi, %c8-4(%%esp)\n\t" \ |