diff options
author | Carmelo Amoroso <carmelo.amoroso@st.com> | 2008-06-19 06:48:05 +0000 |
---|---|---|
committer | Carmelo Amoroso <carmelo.amoroso@st.com> | 2008-06-19 06:48:05 +0000 |
commit | 8b96f0d1ca80a4ba9f8b06313dac4e7a351d728d (patch) | |
tree | aba7c0f12efda51131ffb58eea03246f27f52b13 /libc/string/cris/memset.c | |
parent | ee82aebd10ba586d3380d6524eae98ee259b133c (diff) | |
download | uClibc-alpine-8b96f0d1ca80a4ba9f8b06313dac4e7a351d728d.tar.bz2 uClibc-alpine-8b96f0d1ca80a4ba9f8b06313dac4e7a351d728d.tar.xz |
Synch arch specific part of libc/string for frv/ia64/sparc/i386/powerpc/arm/avr32/x86_64/cris/bfin
Diffstat (limited to 'libc/string/cris/memset.c')
-rw-r--r-- | libc/string/cris/memset.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/string/cris/memset.c b/libc/string/cris/memset.c index 7e71bc50f..9cc959a33 100644 --- a/libc/string/cris/memset.c +++ b/libc/string/cris/memset.c @@ -59,7 +59,7 @@ void *memset(void *, int, unsigned long); -libc_hidden_proto(memset) +/* Experimentally off - libc_hidden_proto(memset) */ void *memset(void *pdst, int c, unsigned long plen) @@ -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\ |