diff options
| author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-17 03:10:29 +0000 |
|---|---|---|
| committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-17 03:10:29 +0000 |
| commit | 164a928b77f596b6617a4bbf43a2c06bc35a5602 (patch) | |
| tree | 8d1f20c152e2eec919c58e3259a20cc038b5d7c4 /libc/string/arm/bcopy.S | |
| parent | 8c325ee38bf779dc5d51e41281d3b8230c3af971 (diff) | |
| download | uClibc-alpine-164a928b77f596b6617a4bbf43a2c06bc35a5602.tar.bz2 uClibc-alpine-164a928b77f596b6617a4bbf43a2c06bc35a5602.tar.xz | |
Merge from trunk.
Diffstat (limited to 'libc/string/arm/bcopy.S')
| -rw-r--r-- | libc/string/arm/bcopy.S | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/libc/string/arm/bcopy.S b/libc/string/arm/bcopy.S index 9e3efc7d0..a02807527 100644 --- a/libc/string/arm/bcopy.S +++ b/libc/string/arm/bcopy.S @@ -39,14 +39,19 @@ /* bcopy = memcpy/memmove with arguments reversed. */ -.text .global bcopy -.type bcopy,%function +.set bcopy,__bcopy +.text +.global __bcopy +.hidden __bcopy +.type __bcopy,%function .align 4 -bcopy: +__bcopy: /* switch the source and destination registers */ eor r0, r1, r0 eor r1, r0, r1 eor r0, r1, r0 b _memcpy (PLT) + +.size __bcopy,.-__bcopy |
