diff options
author | kib <kib@FreeBSD.org> | 2011-01-07 16:08:40 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2011-01-07 16:08:40 +0000 |
commit | a5e01acec5aad9ddbe58e73c087304a450c8e84e (patch) | |
tree | 39faba3509b3a7c544403494acd4543a4fac790f /lib/libc/i386/string/strcpy.S | |
parent | 2d97afa68c3a44f4ef609f8fa3766fd4af44b6e3 (diff) | |
download | FreeBSD-src-a5e01acec5aad9ddbe58e73c087304a450c8e84e.zip FreeBSD-src-a5e01acec5aad9ddbe58e73c087304a450c8e84e.tar.gz |
Add section .note.GNU-stack for assembly files used by 386 and amd64.
Diffstat (limited to 'lib/libc/i386/string/strcpy.S')
-rw-r--r-- | lib/libc/i386/string/strcpy.S | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libc/i386/string/strcpy.S b/lib/libc/i386/string/strcpy.S index 7367c07..c5113f6 100644 --- a/lib/libc/i386/string/strcpy.S +++ b/lib/libc/i386/string/strcpy.S @@ -88,3 +88,5 @@ L1: movb (%edx),%al /* unroll loop, but not too much */ L2: popl %eax /* pop dst address */ ret END(strcpy) + + .section .note.GNU-stack,"",%progbits |