summaryrefslogtreecommitdiff
path: root/lib_blackfin/memmove.S
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2008-02-19 00:36:14 -0500
committerMike Frysinger <vapier@gentoo.org>2008-03-15 22:14:57 -0400
commit5b22163fef865af2b6bfb6b75f1b7bf443ce170c (patch)
treea93fc7598a06334f9cba7e29bce76dd08339c429 /lib_blackfin/memmove.S
parentcf675d3b2b9c3511c1d99bc8f8f38fd2f08bfcaf (diff)
Blackfin: add proper ELF markings to some assembly functions
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'lib_blackfin/memmove.S')
-rw-r--r--lib_blackfin/memmove.S3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib_blackfin/memmove.S b/lib_blackfin/memmove.S
index 46f79ed18..e385c4f6f 100644
--- a/lib_blackfin/memmove.S
+++ b/lib_blackfin/memmove.S
@@ -31,6 +31,7 @@
*/
.globl _memmove;
+.type _memmove, STT_FUNC;
_memmove:
I1 = P3;
P0 = R0; /* P0 = To address */
@@ -91,3 +92,5 @@ _memmove:
.Lno_loop: B[P0] = R1;
P3 = I1;
RTS;
+
+.size _memmove, .-_memmove