From owner-svn-src-head@freebsd.org Thu Apr 14 16:32:29 2016 Return-Path: Delivered-To: svn-src-head@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 34E60A93B2A; Thu, 14 Apr 2016 16:32:29 +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 E04D81D6F; Thu, 14 Apr 2016 16:32:28 +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 u3EGWS8M050804; Thu, 14 Apr 2016 16:32:28 GMT (envelope-from emaste@FreeBSD.org) Received: (from emaste@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3EGWR1R050801; Thu, 14 Apr 2016 16:32:27 GMT (envelope-from emaste@FreeBSD.org) Message-Id: <201604141632.u3EGWR1R050801@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: emaste set sender to emaste@FreeBSD.org using -f From: Ed Maste Date: Thu, 14 Apr 2016 16:32:27 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r297973 - head/lib/libc/aarch64/sys X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.21 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: Thu, 14 Apr 2016 16:32:29 -0000 Author: emaste Date: Thu Apr 14 16:32:27 2016 New Revision: 297973 URL: https://svnweb.freebsd.org/changeset/base/297973 Log: arm64 libc: hide .cerror, .curbrk, .minbrk for WITHOUT_SYMVER When symver is in use these are hidden because they're not listed in the Symbol.map. Add an explicit .hidden so they are also hidden in the WITHOUT_SYMVER case. Reviewed by: andrew Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D5775 Modified: head/lib/libc/aarch64/sys/brk.S head/lib/libc/aarch64/sys/cerror.S head/lib/libc/aarch64/sys/sbrk.S Modified: head/lib/libc/aarch64/sys/brk.S ============================================================================== --- head/lib/libc/aarch64/sys/brk.S Thu Apr 14 15:52:11 2016 (r297972) +++ head/lib/libc/aarch64/sys/brk.S Thu Apr 14 16:32:27 2016 (r297973) @@ -37,6 +37,7 @@ __FBSDID("$FreeBSD$"); .data .align 3 .globl _C_LABEL(minbrk) + .hidden _C_LABEL(minbrk) .type _C_LABEL(minbrk),#object _C_LABEL(minbrk): .quad _C_LABEL(_end) Modified: head/lib/libc/aarch64/sys/cerror.S ============================================================================== --- head/lib/libc/aarch64/sys/cerror.S Thu Apr 14 15:52:11 2016 (r297972) +++ head/lib/libc/aarch64/sys/cerror.S Thu Apr 14 16:32:27 2016 (r297973) @@ -29,6 +29,7 @@ __FBSDID("$FreeBSD$"); ENTRY(cerror) + .hidden cerror sub sp, sp, #16 stp x0, lr, [sp] bl _C_LABEL(__error) Modified: head/lib/libc/aarch64/sys/sbrk.S ============================================================================== --- head/lib/libc/aarch64/sys/sbrk.S Thu Apr 14 15:52:11 2016 (r297972) +++ head/lib/libc/aarch64/sys/sbrk.S Thu Apr 14 16:32:27 2016 (r297973) @@ -37,6 +37,7 @@ __FBSDID("$FreeBSD$"); .data .align 3 .global _C_LABEL(curbrk) + .hidden _C_LABEL(curbrk) .type _C_LABEL(curbrk),#object _C_LABEL(curbrk): .quad _C_LABEL(_end)