From owner-svn-src-head@FreeBSD.ORG Fri Feb 4 21:04:00 2011 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 726D11065673; Fri, 4 Feb 2011 21:04:00 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 5B8388FC14; Fri, 4 Feb 2011 21:04:00 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id p14L40ce098214; Fri, 4 Feb 2011 21:04:00 GMT (envelope-from kib@svn.freebsd.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id p14L40gg098210; Fri, 4 Feb 2011 21:04:00 GMT (envelope-from kib@svn.freebsd.org) Message-Id: <201102042104.p14L40gg098210@svn.freebsd.org> From: Konstantin Belousov Date: Fri, 4 Feb 2011 21:04:00 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r218303 - in head/lib/libc: amd64/string i386/string X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Feb 2011 21:04:00 -0000 Author: kib Date: Fri Feb 4 21:04:00 2011 New Revision: 218303 URL: http://svn.freebsd.org/changeset/base/218303 Log: Remove duplicate .note.GNU-stack section declaration. bcopy already made the neccessary provisions. Reported by: arundel Modified: head/lib/libc/amd64/string/memmove.S head/lib/libc/i386/string/memcpy.S head/lib/libc/i386/string/memmove.S Modified: head/lib/libc/amd64/string/memmove.S ============================================================================== --- head/lib/libc/amd64/string/memmove.S Fri Feb 4 20:59:45 2011 (r218302) +++ head/lib/libc/amd64/string/memmove.S Fri Feb 4 21:04:00 2011 (r218303) @@ -3,5 +3,3 @@ #define MEMMOVE #include "bcopy.S" - - .section .note.GNU-stack,"",%progbist Modified: head/lib/libc/i386/string/memcpy.S ============================================================================== --- head/lib/libc/i386/string/memcpy.S Fri Feb 4 20:59:45 2011 (r218302) +++ head/lib/libc/i386/string/memcpy.S Fri Feb 4 21:04:00 2011 (r218303) @@ -3,5 +3,3 @@ __FBSDID("$FreeBSD$"); #define MEMCOPY #include "bcopy.S" - - .section .note.GNU-stack,"",%progbits Modified: head/lib/libc/i386/string/memmove.S ============================================================================== --- head/lib/libc/i386/string/memmove.S Fri Feb 4 20:59:45 2011 (r218302) +++ head/lib/libc/i386/string/memmove.S Fri Feb 4 21:04:00 2011 (r218303) @@ -3,5 +3,3 @@ __FBSDID("$FreeBSD$"); #define MEMMOVE #include "bcopy.S" - - .section .note.GNU-stack,"",%progbits