diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-11 23:59:19 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-11 23:59:19 +0000 |
commit | 925220a4fecf635d106989aa4a56d80152777ba3 (patch) | |
tree | d913d7fa283471f1c3e03feaeb135e36b02d05cb /libc/string/arm/memmove.S | |
parent | 0b09d1e5ed195662e8df3246ca4cc450947cc0f8 (diff) |
Add hidden versions, add missing .size
Diffstat (limited to 'libc/string/arm/memmove.S')
-rw-r--r-- | libc/string/arm/memmove.S | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/libc/string/arm/memmove.S b/libc/string/arm/memmove.S index 9dbd3a004..eafd345b4 100644 --- a/libc/string/arm/memmove.S +++ b/libc/string/arm/memmove.S @@ -37,12 +37,17 @@ * by Erik Andersen <andersen@codepoet.org> */ -.text .global memmove -.type memmove,%function +.set memmove,__memmove +.text +.global __memmove +.hidden __memmove +.type __memmove,%function .align 4 -memmove: +__memmove: stmfd sp!, {r0, lr} bl _memcpy (PLT) ldmfd sp!, {r0, pc} + +.size __memmove,.-__memmove |