summaryrefslogtreecommitdiffstats
path: root/libc/arch-x86/string/strcat.S
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2013-02-13 15:12:32 -0800
committerElliott Hughes <enh@google.com>2013-02-13 15:12:32 -0800
commit6719500dbd9330d7539d2db3dcf3e8ad1858c7aa (patch)
treec5ee88ca9fa2aadf63a88f2a0255ecdcee07e881 /libc/arch-x86/string/strcat.S
parent2fee0340a93637507de6a860914dc3e14d44ee94 (diff)
downloadbionic-6719500dbd9330d7539d2db3dcf3e8ad1858c7aa.zip
bionic-6719500dbd9330d7539d2db3dcf3e8ad1858c7aa.tar.gz
bionic-6719500dbd9330d7539d2db3dcf3e8ad1858c7aa.tar.bz2
Add a bunch more missing ENDs to assembler routines.
This isn't everything; I've missed out those x86 files that are Change-Id: Idb7bb1a68796d6c0b70ea2b5c3300e49da6c62d2
Diffstat (limited to 'libc/arch-x86/string/strcat.S')
-rw-r--r--libc/arch-x86/string/strcat.S1
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/arch-x86/string/strcat.S b/libc/arch-x86/string/strcat.S
index 60fdd55..c75f38a 100644
--- a/libc/arch-x86/string/strcat.S
+++ b/libc/arch-x86/string/strcat.S
@@ -71,3 +71,4 @@ L1: movb (%edx),%al /* unroll loop, but not too much */
L2: popl %eax /* pop destination address */
popl %edi /* restore edi */
ret
+END(strcat)