From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from eggs.gnu.org (eggs.gnu.org [IPv6:2001:470:142:3::10]) by sourceware.org (Postfix) with ESMTPS id 7C8F9384D17B for ; Thu, 20 Oct 2022 18:00:29 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 7C8F9384D17B Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1olZqG-0000tZ-SZ; Thu, 20 Oct 2022 14:00:28 -0400 Received: from [87.69.77.57] (helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1olZqG-0003Rp-5v; Thu, 20 Oct 2022 14:00:28 -0400 Date: Thu, 20 Oct 2022 21:00:24 +0300 Message-Id: <83o7u6wf2f.fsf@gnu.org> From: Eli Zaretskii To: Gareth Rees Cc: gdb-patches@sourceware.org In-Reply-To: <20221020174702.514681-1-grees@undo.io> (message from Gareth Rees via Gdb-patches on Thu, 20 Oct 2022 18:47:02 +0100) Subject: Re: [PATCH v5] [PR mi/29554] New PRINT-VALUES option '--scalar-values'. References: <87fsftateu.fsf@redhat.com> <20221020174702.514681-1-grees@undo.io> X-Spam-Status: No, score=1.7 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_BARRACUDACENTRAL, SPF_HELO_PASS, SPF_PASS, TXREP autolearn=no autolearn_force=no version=3.4.6 X-Spam-Level: * X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Oct 2022 18:00:31 -0000 > Date: Thu, 20 Oct 2022 18:47:02 +0100 > From: Gareth Rees via Gdb-patches > > Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=29554 > --- > gdb/NEWS | 9 +++ > gdb/doc/gdb.texinfo | 59 ++++++++++------- > gdb/extension.h | 3 + > gdb/mi/mi-cmd-stack.c | 16 ++--- > gdb/mi/mi-cmd-var.c | 45 ++++++++++--- > gdb/mi/mi-cmds.h | 17 ++++- > gdb/mi/mi-main.c | 35 ++++------- > gdb/mi/mi-parse.c | 8 ++- > gdb/python/py-framefilter.c | 40 ++++++------ > gdb/testsuite/gdb.mi/mi-stack.exp | 37 ++++++++++- > gdb/testsuite/gdb.mi/print-values.cc | 63 +++++++++++++++++++ > gdb/testsuite/gdb.mi/print-values.exp | 53 ++++++++++++++++ > .../gdb.python/py-framefilter-mi.exp | 28 +++++++++ > 13 files changed, 323 insertions(+), 90 deletions(-) > create mode 100644 gdb/testsuite/gdb.mi/print-values.cc > create mode 100644 gdb/testsuite/gdb.mi/print-values.exp Thanks, the documentation parts are OK.