diff options
author | peter <peter@FreeBSD.org> | 2008-11-02 01:28:47 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2008-11-02 01:28:47 +0000 |
commit | 3375b8347bf4a4a5365a390af7fa3c2adb0ad6cd (patch) | |
tree | 3dffbf64ba2a3402b9a89f84ff5f5036d0a9ce91 /lib/libc/i386/string/strcat.S | |
parent | aa63008f13d7a07b62a85c25814374cb77dc7f84 (diff) | |
download | FreeBSD-src-3375b8347bf4a4a5365a390af7fa3c2adb0ad6cd.zip FreeBSD-src-3375b8347bf4a4a5365a390af7fa3c2adb0ad6cd.tar.gz |
Add missing END() macros, as per rev 184547 for amd64. The lack of these
is mostly harmless, but it does upset some of valgrind's functionality.
Diffstat (limited to 'lib/libc/i386/string/strcat.S')
-rw-r--r-- | lib/libc/i386/string/strcat.S | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libc/i386/string/strcat.S b/lib/libc/i386/string/strcat.S index 3a667ca..6715bd8 100644 --- a/lib/libc/i386/string/strcat.S +++ b/lib/libc/i386/string/strcat.S @@ -98,3 +98,4 @@ L1: movb (%edx),%al /* unroll loop, but not too much */ L2: popl %eax /* pop destination address */ popl %edi /* restore edi */ ret +END(strcat) |