From owner-svn-src-stable@freebsd.org Fri Jan 20 02:50:25 2017 Return-Path: Delivered-To: svn-src-stable@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 848FFCB711A; Fri, 20 Jan 2017 02:50:25 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 52A3012D9; Fri, 20 Jan 2017 02:50:25 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0K2oOq4077395; Fri, 20 Jan 2017 02:50:24 GMT (envelope-from emaste@FreeBSD.org) Received: (from emaste@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0K2oOhs077393; Fri, 20 Jan 2017 02:50:24 GMT (envelope-from emaste@FreeBSD.org) Message-Id: <201701200250.v0K2oOhs077393@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: emaste set sender to emaste@FreeBSD.org using -f From: Ed Maste Date: Fri, 20 Jan 2017 02:50:24 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r312449 - stable/11/contrib/llvm/projects/libunwind/src X-SVN-Group: stable-11 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Jan 2017 02:50:25 -0000 Author: emaste Date: Fri Jan 20 02:50:24 2017 New Revision: 312449 URL: https://svnweb.freebsd.org/changeset/base/312449 Log: MFC r311647: libunwind: add noexec stack annotation Sponsored by: The FreeBSD Foundation Modified: stable/11/contrib/llvm/projects/libunwind/src/UnwindRegistersRestore.S stable/11/contrib/llvm/projects/libunwind/src/UnwindRegistersSave.S Directory Properties: stable/11/ (props changed) Modified: stable/11/contrib/llvm/projects/libunwind/src/UnwindRegistersRestore.S ============================================================================== --- stable/11/contrib/llvm/projects/libunwind/src/UnwindRegistersRestore.S Fri Jan 20 02:48:52 2017 (r312448) +++ stable/11/contrib/llvm/projects/libunwind/src/UnwindRegistersRestore.S Fri Jan 20 02:50:24 2017 (r312449) @@ -483,3 +483,5 @@ DEFINE_LIBUNWIND_PRIVATE_FUNCTION(_ZN9li /* RISCVTODO */ #endif + + .section .note.GNU-stack,"",@progbits Modified: stable/11/contrib/llvm/projects/libunwind/src/UnwindRegistersSave.S ============================================================================== --- stable/11/contrib/llvm/projects/libunwind/src/UnwindRegistersSave.S Fri Jan 20 02:48:52 2017 (r312448) +++ stable/11/contrib/llvm/projects/libunwind/src/UnwindRegistersSave.S Fri Jan 20 02:50:24 2017 (r312449) @@ -469,3 +469,5 @@ DEFINE_LIBUNWIND_FUNCTION(unw_getcontext /* RISCVTODO */ #endif + + .section .note.GNU-stack,"",@progbits