From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 94117 invoked by alias); 18 May 2018 17:00:27 -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 94027 invoked by uid 89); 18 May 2018 17:00:23 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-24.9 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy=Hx-languages-length:954 X-HELO: rock.gnat.com Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 18 May 2018 17:00:21 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id AF74A1177C5; Fri, 18 May 2018 13:00:19 -0400 (EDT) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id wHmycNg8XWgB; Fri, 18 May 2018 13:00:19 -0400 (EDT) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id 87675117793; Fri, 18 May 2018 13:00:19 -0400 (EDT) Received: by joel.gnat.com (Postfix, from userid 1000) id AF9798304E; Fri, 18 May 2018 10:00:17 -0700 (PDT) Date: Fri, 18 May 2018 18:50:00 -0000 From: Joel Brobecker To: Tamar Christina Cc: "gdb-patches@sourceware.org" , nd Subject: Re: Backport of patch to gdb 8.0 branch. Message-ID: <20180518170017.fjqa27umztktv7fx@adacore.com> References: <20180517171644.7n46a6flnuuz23en@adacore.com> <20180518094554.GA18416@arm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180518094554.GA18416@arm.com> User-Agent: NeoMutt/20170113 (1.7.2) X-SW-Source: 2018-05/txt/msg00406.txt.bz2 > This patch already exists in master and 8.1 branches as > 957f6b39cab6cac0e4c54e650c7f75109544ac1d. > > Ok for gdb-8.0-branch? > > opcodes/ > 2018-05-18 Tamar Christina > > PR gdb/23200 > * aarch64-opc.c (aarch64_logical_immediate_p): Update > DEBUG_TRACE arguments. Yes, you can go right ahead. > diff --git a/opcodes/aarch64-opc.c b/opcodes/aarch64-opc.c > index cc99c101236c542ff94bb9c0abc09df521ced330..a52ea70c0093f7daaecfd58e3f0e81a3953abf5f 100644 > --- a/opcodes/aarch64-opc.c > +++ b/opcodes/aarch64-opc.c > @@ -1204,8 +1204,8 @@ aarch64_logical_immediate_p (uint64_t value, int esize, aarch64_insn *encoding) > uint64_t upper; > int i; > > - DEBUG_TRACE ("enter with 0x%" PRIx64 "(%" PRIi64 "), is32: %d", value, > - value, is32); > + DEBUG_TRACE ("enter with 0x%" PRIx64 "(%" PRIi64 "), esize: %d", value, > + value, esize); > > if (initialized == FALSE) > { > -- Joel