From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21058 invoked by alias); 10 Oct 2012 15:48:19 -0000 Received: (qmail 21044 invoked by uid 22791); 10 Oct 2012 15:48:16 -0000 X-SWARE-Spam-Status: No, hits=-1.9 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,KHOP_SPAMHAUS_DROP,RCVD_IN_DNSWL_LOW X-Spam-Check-By: sourceware.org Received: from service87.mimecast.com (HELO service87.mimecast.com) (91.220.42.44) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 10 Oct 2012 15:48:11 +0000 Received: from cam-owa1.Emea.Arm.com (fw-tnat.cambridge.arm.com [217.140.96.21]) by service87.mimecast.com; Wed, 10 Oct 2012 16:48:10 +0100 Received: from [10.1.69.62] ([10.1.255.212]) by cam-owa1.Emea.Arm.com with Microsoft SMTPSVC(6.0.3790.0); Wed, 10 Oct 2012 16:48:08 +0100 Message-ID: <507598B8.2070207@arm.com> Date: Wed, 10 Oct 2012 15:48:00 -0000 From: Yufeng Zhang User-Agent: Mozilla/5.0 (X11; Linux i686 on x86_64; rv:8.0) Gecko/20111105 Thunderbird/8.0 MIME-Version: 1.0 To: "gdb-patches@sourceware.org" Subject: [PATCH] Remove unnecessary '#' from an assembly test file X-MC-Unique: 112101016481012801 Content-Type: multipart/mixed; boundary="------------070408060304000305060902" X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2012-10/txt/msg00162.txt.bz2 This is a multi-part message in MIME format. --------------070408060304000305060902 Content-Type: text/plain; charset=WINDOWS-1252; format=flowed Content-Transfer-Encoding: quoted-printable Content-length: 364 Hi, This patch removes a hash character from the end of a symbol in=20 gdb/testsuite/gdb.dwarf2/dw2-icc-opaque.S While some assemblers (e.g. x86 gas) are tolerant of it, others (e.g.=20 arm gas) do complain about it. Is it OK? Thanks, Yufeng testsuite/ChangeLog 2012-10-10 Yufeng Zhang * gdb.dwarf2/dw2-icc-opaque.S: Remove '#'.= --------------070408060304000305060902 Content-Type: text/x-patch; name=hash-symbol.patch Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="hash-symbol.patch" Content-length: 386 diff --git a/gdb/testsuite/gdb.dwarf2/dw2-icc-opaque.S b/gdb/testsuite/gdb.= dwarf2/dw2-icc-opaque.S index 47b017b..ddeb6c8 100644 --- a/gdb/testsuite/gdb.dwarf2/dw2-icc-opaque.S +++ b/gdb/testsuite/gdb.dwarf2/dw2-icc-opaque.S @@ -35,7 +35,7 @@ .file "opaque-pointer.c" .data .comm p_struct,8,8 - .global p_struct# + .global p_struct =20 .section .debug_info debug_info_seg1:= --------------070408060304000305060902--