diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-12 00:09:41 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-12 00:09:41 +0000 |
commit | dd1be05eec6310a34647575c0d20bb5a052563c2 (patch) | |
tree | d446bca7855325365477cb4f166a4758c17c5d03 /libc/string/sh64/memcpy.S | |
parent | ccb1922d8b3918b32a3cc11e61786c6c368967a8 (diff) |
Add hidden versions
Diffstat (limited to 'libc/string/sh64/memcpy.S')
-rw-r--r-- | libc/string/sh64/memcpy.S | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/libc/string/sh64/memcpy.S b/libc/string/sh64/memcpy.S index 361e050db..0ee386a96 100644 --- a/libc/string/sh64/memcpy.S +++ b/libc/string/sh64/memcpy.S @@ -38,10 +38,13 @@ .section .text..SHmedia32,"ax" .globl memcpy - .type memcpy, @function + .set memcpy,__memcpy + .globl __memcpy + .hidden __memcpy + .type __memcpy, @function .align 5 -memcpy: +__memcpy: #define LDUAQ(P,O,D0,D1) ldlo.q P,O,D0; ldhi.q P,O+7,D1 #define STUAQ(P,O,D0,D1) stlo.q P,O,D0; sthi.q P,O+7,D1 @@ -198,5 +201,4 @@ Loop_ua: stlo.q r5, 8, r1 blink tr1, r63 - .size memcpy, . - memcpy - + .size __memcpy,.-__memcpy |