From owner-svn-src-head@FreeBSD.ORG Fri Feb 4 21:30:47 2011 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1233) id 53DC510656AA; Fri, 4 Feb 2011 21:30:47 +0000 (UTC) Date: Fri, 4 Feb 2011 21:30:47 +0000 From: Alexander Best To: Konstantin Belousov Message-ID: <20110204213047.GA36268@freebsd.org> References: <201102042104.p14L40gg098210@svn.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201102042104.p14L40gg098210@svn.freebsd.org> Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: 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:30:47 -0000 On Fri Feb 4 11, Konstantin Belousov wrote: > 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. ...and some more in lib/msun/amd64/s_llrint.S lib/msun/amd64/s_llrintf.S due to the inclusion of s_lrintf.S > > 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 -- a13x