diff options
Diffstat (limited to 'lib_blackfin/memcmp.S')
-rw-r--r-- | lib_blackfin/memcmp.S | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib_blackfin/memcmp.S b/lib_blackfin/memcmp.S index 9b58832943d..6c834a7e853 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 |