From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13076 invoked by alias); 27 Sep 2011 15:36:34 -0000 Received: (qmail 13042 invoked by uid 22791); 27 Sep 2011 15:36:33 -0000 X-SWARE-Spam-Status: No, hits=-6.6 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,RP_MATCHES_RCVD,SPF_HELO_PASS X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 27 Sep 2011 15:36:12 +0000 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p8RFa4s2015519 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Tue, 27 Sep 2011 11:36:04 -0400 Received: from anchor.twiddle.net (vpn-234-244.phx2.redhat.com [10.3.234.244]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id p8RFa3dk032424; Tue, 27 Sep 2011 11:36:03 -0400 Message-ID: <4E81ED63.2090404@redhat.com> Date: Tue, 27 Sep 2011 16:49:00 -0000 From: Richard Henderson User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:6.0.2) Gecko/20110906 Thunderbird/6.0.2 MIME-Version: 1.0 To: Nick Clifton CC: richard.earnshaw@arm.com, paul@codesourcery.com, ramana.radhakrishnan@arm.com, gcc-patches@gcc.gnu.org Subject: Re: RFC: ARM: Add comment enumerating emitted .eabi_attribute tags References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2011-09/txt/msg01739.txt.bz2 On 09/27/2011 07:38 AM, Nick Clifton wrote: > +#define EMIT_EABI_ATTRIBUTE(name,val) \ > + do \ > + { \ > + asm_fprintf (asm_out_file, "\t.eabi_attribute %d, %d\t%s " #name "\n", \ > + name, val, ASM_COMMENT_START); \ > + } \ You should only emit the comment for -dA, I think. r~