From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6748 invoked by alias); 10 Jul 2012 14:31:22 -0000 Received: (qmail 6739 invoked by uid 22791); 10 Jul 2012 14:31:21 -0000 X-SWARE-Spam-Status: No, hits=-4.1 required=5.0 tests=AWL,BAYES_00,KAM_STOCKGEN,KHOP_RCVD_UNTRUST,KHOP_THREADED,RCVD_IN_HOSTKARMA_W,RCVD_IN_HOSTKARMA_WL X-Spam-Check-By: sourceware.org Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 10 Jul 2012 14:31:07 +0000 Received: from svr-orw-fem-01.mgc.mentorg.com ([147.34.98.93]) by relay1.mentorg.com with esmtp id 1SobT0-0007Tz-7f from joseph_myers@mentor.com for libc-ports@sourceware.org; Tue, 10 Jul 2012 07:31:06 -0700 Received: from SVR-IES-FEM-02.mgc.mentorg.com ([137.202.0.106]) by svr-orw-fem-01.mgc.mentorg.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.4675); Tue, 10 Jul 2012 07:31:05 -0700 Received: from digraph.polyomino.org.uk (137.202.0.76) by SVR-IES-FEM-02.mgc.mentorg.com (137.202.0.106) with Microsoft SMTP Server id 14.1.289.1; Tue, 10 Jul 2012 15:31:04 +0100 Received: from jsm28 (helo=localhost) by digraph.polyomino.org.uk with local-esmtp (Exim 4.76) (envelope-from ) id 1SobSx-0006aK-BZ for libc-ports@sourceware.org; Tue, 10 Jul 2012 14:31:03 +0000 Date: Tue, 10 Jul 2012 14:31:00 -0000 From: "Joseph S. Myers" To: libc-ports Subject: Re: Removal of ASM_GLOBAL_DIRECTIVE In-Reply-To: <20120710142014.GD3441@redhat.com> Message-ID: References: <20120710142014.GD3441@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Mailing-List: contact libc-ports-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: libc-ports-owner@sourceware.org X-SW-Source: 2012-07/txt/msg00018.txt.bz2 I've applied this patch to update ARM. Tile and am33 need similar updates. diff --git a/ports/ChangeLog.arm b/ports/ChangeLog.arm index 8cd383d..1aec3d4 100644 --- a/ports/ChangeLog.arm +++ b/ports/ChangeLog.arm @@ -1,3 +1,8 @@ +2012-07-10 Joseph Myers + + * sysdeps/arm/sysdep.h (ENTRY): Change ASM_GLOBAL_DIRECTIVE to + .globl. + 2012-07-05 Joseph Myers * sysdeps/arm/static-stubs.c: New file. diff --git a/ports/sysdeps/arm/sysdep.h b/ports/sysdeps/arm/sysdep.h index 7800456..cd3d70b 100644 --- a/ports/sysdeps/arm/sysdep.h +++ b/ports/sysdeps/arm/sysdep.h @@ -62,7 +62,7 @@ /* Define an entry point visible from C. */ #define ENTRY(name) \ - ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME(name); \ + .globl C_SYMBOL_NAME(name); \ ASM_TYPE_DIRECTIVE (C_SYMBOL_NAME(name),function) \ .align ALIGNARG(4); \ C_LABEL(name) \ -- Joseph S. Myers joseph@codesourcery.com