From owner-svn-src-head@FreeBSD.ORG Sat Jul 2 10:17:26 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 BB52D106564A; Sat, 2 Jul 2011 10:17:26 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id ABA6B8FC16; Sat, 2 Jul 2011 10:17:26 +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 p62AHQGV035192; Sat, 2 Jul 2011 10:17:26 GMT (envelope-from marius@svn.freebsd.org) Received: (from marius@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p62AHQX5035190; Sat, 2 Jul 2011 10:17:26 GMT (envelope-from marius@svn.freebsd.org) Message-Id: <201107021017.p62AHQX5035190@svn.freebsd.org> From: Marius Strobl Date: Sat, 2 Jul 2011 10:17:26 +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: r223718 - head/sys/sparc64/sparc64 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: Sat, 02 Jul 2011 10:17:26 -0000 Author: marius Date: Sat Jul 2 10:17:26 2011 New Revision: 223718 URL: http://svn.freebsd.org/changeset/base/223718 Log: Using .comm to declare intrnames and eintrnames causes binutils 2.17.50 to merge the two. Modified: head/sys/sparc64/sparc64/exception.S Modified: head/sys/sparc64/sparc64/exception.S ============================================================================== --- head/sys/sparc64/sparc64/exception.S Sat Jul 2 00:38:10 2011 (r223717) +++ head/sys/sparc64/sparc64/exception.S Sat Jul 2 10:17:26 2011 (r223718) @@ -369,11 +369,18 @@ ENTRY(rsf_fatal) sir END(rsf_fatal) - .comm intrnames, IV_MAX * (MAXCOMLEN + 1) - .comm eintrnames, 0 + .data + _ALIGN_DATA + .globl intrnames, eintrnames +intrnames: + .space IV_MAX * (MAXCOMLEN + 1) +eintrnames: + .globl intrcnt, eintrcnt +intrcnt: + .space IV_MAX * 8 +eintrcnt: - .comm intrcnt, IV_MAX * 8 - .comm eintrcnt, 0 + .text /* * Trap table and associated macros