From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29436 invoked by alias); 23 Apr 2019 21:08:59 -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 29428 invoked by uid 89); 23 Apr 2019 21:08:59 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-12.7 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_2,GIT_PATCH_3,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.1 spammy=struggling, After X-HELO: mail-wm1-f65.google.com Received: from mail-wm1-f65.google.com (HELO mail-wm1-f65.google.com) (209.85.128.65) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 23 Apr 2019 21:08:55 +0000 Received: by mail-wm1-f65.google.com with SMTP id 4so1813188wmf.1 for ; Tue, 23 Apr 2019 14:08:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=embecosm.com; s=google; h=date:from:to:cc:subject:message-id:references:mime-version :content-disposition:in-reply-to:user-agent; bh=Q4bwahAwA+iJ40Wet/RRFMLncsMtXdrW4oqgaJ6YUew=; b=BR8YV7brvB0h2K2EhB+KJOz6cPiquHG9x/cmhAuvTU6L2vpEbmWLmcINjsMiPI4TSj aVRtexJ7bUm92qlp7ch2w2ZSeuK+QW7r2lEdr0svl1nHsWb663hwKDnUCB0nSheL/S7T e+EofE7UlwyyMTQvrCTnAJ2JeiVuXxEQiSpBzNqIUeZGa3V1eKVdTOa4jwSOPufvbLCj CUbTS+H1/eE74JBqkvwO0eXrved9ryFEF9a7yd3Z34dGlhiJs3ePyRLqtJk8yt4/Jkzd RAiJ1evpvP/sv14ZfG01YhcOwI4Rm4XPoSybJrb9S4VVJxYb6VAAT/12JjoQDA0ZUUuz uE9A== Return-Path: Received: from localhost (host109-148-134-137.range109-148.btcentralplus.com. [109.148.134.137]) by smtp.gmail.com with ESMTPSA id r18sm25412469wme.18.2019.04.23.14.08.51 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Tue, 23 Apr 2019 14:08:52 -0700 (PDT) Date: Tue, 23 Apr 2019 21:08:00 -0000 From: Andrew Burgess To: gdb-patches@sourceware.org Cc: alan.hayward@arm.com Subject: Re: [PATCH 0/3] More use of type_align function Message-ID: <20190423210850.GI2737@embecosm.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Fortune: * Knghtbrd is FAR too tempted to .sig this entire discussion... X-Editor: GNU Emacs [ http://www.gnu.org/software/emacs ] User-Agent: Mutt/1.9.2 (2017-12-15) X-IsSubscribed: yes X-SW-Source: 2019-04/txt/msg00472.txt.bz2 * Andrew Burgess [2019-04-13 00:25:31 +0100]: > After converting RISC-V to use type_align, this series converts > aarch64, arm, and nds32. > > I've done very limited testing for aarch64 and arm - I'm struggling to > get the testsuite runnninng against the simulator I have to hand right > now, so only a small amount of manual testing has been done. > > I've done no testing of nds32 at all. > > The new test passes on X86-64/GNU-Linux. > > -- > > Andrew Burgess (3): > gdb/aarch64: Use type_align instead of aarch64_type_align > gdb/arm: Use type_align instead of arm_type_align > gdb/nds32: Use type_align instead of nds32_type_align I have now pushed this series. Thanks, Andrew > > gdb/ChangeLog | 19 ++++++++++ > gdb/aarch64-tdep.c | 66 ++++++++------------------------- > gdb/arm-tdep.c | 68 +++++++++------------------------- > gdb/nds32-tdep.c | 49 +----------------------- > gdb/testsuite/ChangeLog | 5 +++ > gdb/testsuite/gdb.cp/many-args.cc | 76 ++++++++++++++++++++++++++++++++++++++ > gdb/testsuite/gdb.cp/many-args.exp | 37 +++++++++++++++++++ > 7 files changed, 171 insertions(+), 149 deletions(-) > create mode 100644 gdb/testsuite/gdb.cp/many-args.cc > create mode 100644 gdb/testsuite/gdb.cp/many-args.exp > > -- > 2.14.5 >