From owner-svn-src-all@FreeBSD.ORG Thu Apr 26 14:02:39 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EA0BE1065689; Thu, 26 Apr 2012 14:02:39 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D479D8FC0C; Thu, 26 Apr 2012 14:02:39 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q3QE2dOH052073; Thu, 26 Apr 2012 14:02:39 GMT (envelope-from nwhitehorn@svn.freebsd.org) Received: (from nwhitehorn@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3QE2dtv052071; Thu, 26 Apr 2012 14:02:39 GMT (envelope-from nwhitehorn@svn.freebsd.org) Message-Id: <201204261402.q3QE2dtv052071@svn.freebsd.org> From: Nathan Whitehorn Date: Thu, 26 Apr 2012 14:02:39 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r234708 - stable/9/sys/powerpc/include X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Apr 2012 14:02:40 -0000 Author: nwhitehorn Date: Thu Apr 26 14:02:39 2012 New Revision: 234708 URL: http://svn.freebsd.org/changeset/base/234708 Log: MFC r234615: Fix copy-and-paste error in r230400 that would cause ppc64 executables built with -fvisibility=hidden to fail to link with a message about hidden symbol main being referenced from a DSO. Modified: stable/9/sys/powerpc/include/profile.h Directory Properties: stable/9/sys/ (props changed) Modified: stable/9/sys/powerpc/include/profile.h ============================================================================== --- stable/9/sys/powerpc/include/profile.h Thu Apr 26 14:00:29 2012 (r234707) +++ stable/9/sys/powerpc/include/profile.h Thu Apr 26 14:02:39 2012 (r234708) @@ -85,7 +85,7 @@ __asm( " .text \n" \ "_mcount: \n" \ " .quad .L._mcount,.TOC.@tocbase,0\n" \ " .previous \n" \ - " .size main,24 \n" \ + " .size _mcount,24 \n" \ " .type _mcount,@function \n" \ " .align 4 \n" \ ".L._mcount: \n" \