summaryrefslogtreecommitdiff
path: root/lib_blackfin/memcmp.S
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2008-02-19 08:36:14 +0300
committerMike Frysinger <vapier@gentoo.org>2008-03-16 05:14:57 +0300
commit5b22163fef865af2b6bfb6b75f1b7bf443ce170c (patch)
treea93fc7598a06334f9cba7e29bce76dd08339c429 /lib_blackfin/memcmp.S
parentcf675d3b2b9c3511c1d99bc8f8f38fd2f08bfcaf (diff)
downloadu-boot-5b22163fef865af2b6bfb6b75f1b7bf443ce170c.tar.xz
Blackfin: add proper ELF markings to some assembly functions
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'lib_blackfin/memcmp.S')
-rw-r--r--lib_blackfin/memcmp.S3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib_blackfin/memcmp.S b/lib_blackfin/memcmp.S
index 9b58832943..6c834a7e85 100644
--- a/lib_blackfin/memcmp.S
+++ b/lib_blackfin/memcmp.S
@@ -31,6 +31,7 @@
*/
.globl _memcmp;
+.type _memcmp, STT_FUNC;
_memcmp:
I1 = P3;
P0 = R0; /* P0 = s1 address */
@@ -98,3 +99,5 @@ _memcmp:
R0 = 0;
P3 = I1;
RTS;
+
+.size _memcmp, .-_memcmp