From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25309 invoked by alias); 16 Nov 2014 19:49:36 -0000 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 Received: (qmail 25299 invoked by uid 89); 16 Nov 2014 19:49:36 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=AWL,BAYES_00,FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-pd0-f171.google.com Received: from mail-pd0-f171.google.com (HELO mail-pd0-f171.google.com) (209.85.192.171) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Sun, 16 Nov 2014 19:49:35 +0000 Received: by mail-pd0-f171.google.com with SMTP id r10so19878988pdi.30 for ; Sun, 16 Nov 2014 11:49:33 -0800 (PST) X-Received: by 10.68.103.195 with SMTP id fy3mr25023038pbb.84.1416167373247; Sun, 16 Nov 2014 11:49:33 -0800 (PST) Received: from seba.sebabeach.org.gmail.com (173-13-178-53-sfba.hfc.comcastbusiness.net. [173.13.178.53]) by mx.google.com with ESMTPSA id fn7sm2420931pad.38.2014.11.16.11.49.32 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 16 Nov 2014 11:49:32 -0800 (PST) From: Doug Evans To: Joel Brobecker Cc: "Maciej W. Rozycki" , "gdb-patches\@sourceware.org" , Rich Fuhler , Richard Sandiford Subject: Re: [PATCH v2 2/2] Correct invalid assumptions made by (mostly) DWARF-2 tests References: <20120611182043.GA7597@adacore.com> <20141116110934.GH5774@adacore.com> Date: Sun, 16 Nov 2014 19:49:00 -0000 In-Reply-To: (Doug Evans's message of "Sun, 16 Nov 2014 10:32:21 -0800") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-IsSubscribed: yes X-SW-Source: 2014-11/txt/msg00381.txt.bz2 Doug Evans writes: > On Sun, Nov 16, 2014 at 3:09 AM, Joel Brobecker wrote: >>> Index: gdb-fsf-trunk-quilt/gdb/testsuite/gdb.dwarf2/dw2-canonicalize-type.S >>> =================================================================== >>> --- >>> gdb-fsf-trunk-quilt.orig/gdb/testsuite/gdb.dwarf2/dw2-canonicalize-type.S >>> 2014-10-02 07:56:23.000000000 +0100 >>> +++ >>> gdb-fsf-trunk-quilt/gdb/testsuite/gdb.dwarf2/dw2-canonicalize-type.S >>> 2014-10-02 07:58:10.978958268 +0100 >>> @@ -15,7 +15,8 @@ >>> >>> .text >>> .globl main >>> -main: .byte 0 >>> +main: >>> + .dc.l 0 >> >> We've never used .dl.l before, and I don't know how widely available >> it is (in fact, I couldn't find it in the GAS manual). How about using >> .word or .4byte? It would also be consistent with what we've usually be >> using. Would that work? > > Agreed. Sorry for the followup, but FAOD, .4byte. .word may be a different size on some platforms.