From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28047 invoked by alias); 10 Jul 2012 14:38:56 -0000 Received: (qmail 27988 invoked by uid 22791); 10 Jul 2012 14:38:54 -0000 X-SWARE-Spam-Status: No, hits=-2.3 required=5.0 tests=AWL,BAYES_00,KAM_STOCKGEN,KHOP_THREADED,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from usmamail.tilera.com (HELO USMAMAIL.TILERA.COM) (12.216.194.151) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 10 Jul 2012 14:38:41 +0000 Received: from [10.7.0.95] (10.9.0.23) by USMAExch2.tad.internal.tilera.com (10.3.0.33) with Microsoft SMTP Server id 14.0.694.0; Tue, 10 Jul 2012 10:38:40 -0400 Message-ID: <4FFC3E6F.10504@tilera.com> Date: Tue, 10 Jul 2012 14:38:00 -0000 From: Chris Metcalf User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:13.0) Gecko/20120614 Thunderbird/13.0.1 MIME-Version: 1.0 To: Marek Polacek CC: libc-ports , Subject: Re: Removal of ASM_GLOBAL_DIRECTIVE References: <20120710142014.GD3441@redhat.com> In-Reply-To: <20120710142014.GD3441@redhat.com> Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit X-IsSubscribed: yes 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/msg00019.txt.bz2 I've applied this patch to update tile. (I also pushed a trivial comment typo in the same git push.) diff --git a/ports/ChangeLog.tile b/ports/ChangeLog.tile index ce8c3e0..3c61b80 100644 --- a/ports/ChangeLog.tile +++ b/ports/ChangeLog.tile @@ -1,3 +1,8 @@ +2012-07-10 Chris Metcalf + + * sysdeps/tile/sysdep.h (ENTRY): Use .globl, not + ASM_GLOBAL_DIRECTIVE. + 2012-05-30 Chris Metcalf * sysdeps/unix/sysv/linux/tile/tilegx/Makefile: Remove test diff --git a/ports/sysdeps/tile/sysdep.h b/ports/sysdeps/tile/sysdep.h index 58432eb..34d7046 100644 --- a/ports/sysdeps/tile/sysdep.h +++ b/ports/sysdeps/tile/sysdep.h @@ -30,7 +30,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 8; \ C_LABEL(name) \ -- Chris Metcalf, Tilera Corp. http://www.tilera.com