diff options
Diffstat (limited to 'libc/string')
-rw-r--r-- | libc/string/cris/memcpy.c | 2 | ||||
-rw-r--r-- | libc/string/cris/memset.c | 2 | ||||
-rw-r--r-- | libc/string/powerpc/memset.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/libc/string/cris/memcpy.c b/libc/string/cris/memcpy.c index a85108109..a00688ab0 100644 --- a/libc/string/cris/memcpy.c +++ b/libc/string/cris/memcpy.c @@ -130,7 +130,7 @@ void *memcpy(void *pdst, here (beware: they may be moved to temporary registers). This way, we do not have to save/move the registers around into temporaries; we can safely use them straight away. */ - __asm__ volatile ("\ + __asm__ __volatile__ ("\ .syntax no_register_prefix \n\ \n\ ;; Check that the register asm declaration got right. \n\ diff --git a/libc/string/cris/memset.c b/libc/string/cris/memset.c index 7e71bc50f..2d1602c5d 100644 --- a/libc/string/cris/memset.c +++ b/libc/string/cris/memset.c @@ -124,7 +124,7 @@ void *memset(void *pdst, here (beware: they may be moved to temporary registers). This way, we do not have to save/move the registers around into temporaries; we can safely use them straight away. */ - __asm__ volatile (" \n\ + __asm__ __volatile__ (" \n\ .syntax no_register_prefix \n\ \n\ ;; Check that the register asm declaration got right. \n\ diff --git a/libc/string/powerpc/memset.c b/libc/string/powerpc/memset.c index 891e0b8aa..93a2c48b2 100644 --- a/libc/string/powerpc/memset.c +++ b/libc/string/powerpc/memset.c @@ -28,7 +28,7 @@ static inline int expand_byte_word(int c){ c = c << 8 | c; c = c << 16 | c ; */ - asm("rlwimi %0,%0,8,16,23\n" + __asm__("rlwimi %0,%0,8,16,23\n" "\trlwimi %0,%0,16,0,15\n" : "=r" (c) : "0" (c)); return c; |