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 B6A6D3857350 for ; Tue, 4 Jul 2023 12:46:38 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org B6A6D3857350 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gnu.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gnu.org 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 1qGfQU-0006dK-Ap; Tue, 04 Jul 2023 08:46:38 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=tEl+6WAj8l1RAk0ap0UsrybJAPzmfdsDrnGtxtb7TVc=; b=JzQwghtG02gr DvI6GruZh29rJEZSn7Y9PBlUlOeDs2b1UNLdofol/J9hy+RUiT+JjqTWy0a8cgw2H1o2faWCB0jB3 ISsR19qyyZVYkG+EBkN4wRafI+tev39PfiioKUpsDPP7y1D/ub8jtJc6L8gY2veAD3P85oG9Nq/ua WIj7hPTZoOvM48hRpyepNhSzQCNcD5oBB3eOND5w9chIelzdNl6eeY4qx9FnTFNV4+1Sea89VBklR AULEcpcurpxPcgH9UgiCdLzZVjAPotFfCcU0a0f8K66C5plxD9CLx/qPmE0Sd8Wiq7SABIbto2XvE GDONPFaGRStlcMks/2AYPw==; 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 1qGfQT-0004ff-Hx; Tue, 04 Jul 2023 08:46:38 -0400 Date: Tue, 04 Jul 2023 15:47:15 +0300 Message-Id: <83ilazlu7g.fsf@gnu.org> From: Eli Zaretskii To: Felix Willgerodt Cc: gdb-patches@sourceware.org, markus.t.metzger@intel.com, simark@simark.ca In-Reply-To: <20230704123600.5944-4-felix.willgerodt@intel.com> (message from Felix Willgerodt via Gdb-patches on Tue, 4 Jul 2023 14:35:53 +0200) Subject: Re: [PATCH v9 03/10] btrace: Enable auxiliary instructions in record function-call-history. References: <20230704123600.5944-1-felix.willgerodt@intel.com> <20230704123600.5944-4-felix.willgerodt@intel.com> X-Spam-Status: No, score=-7.1 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,RCVD_IN_BARRACUDACENTRAL,SPF_HELO_PASS,SPF_PASS,TXREP,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: > Cc: Felix Willgerodt > Date: Tue, 4 Jul 2023 14:35:53 +0200 > From: Felix Willgerodt via Gdb-patches > > diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo > index 5f15875f5dd..55a51449c7a 100644 > --- a/gdb/doc/gdb.texinfo > +++ b/gdb/doc/gdb.texinfo > @@ -8134,8 +8134,9 @@ that function, the source lines for this instruction sequence (if the > @code{/l} modifier is specified), and the instructions numbers that form > the sequence (if the @code{/i} modifier is specified). The function names > are indented to reflect the call stack depth if the @code{/c} modifier is > -specified. The @code{/l}, @code{/i}, and @code{/c} modifiers can be given > -together. > +specified. Printing auxiliary information is enabled by default and can be > +omitted with the @code{/a} modifier. The @code{/l}, @code{/i}, @code{/a}, > +and @code{/c} modifiers can be given together. > > @smallexample > (@value{GDBP}) @b{list 1, 10} This part is OK, thanks. Reviewed-By: Eli Zaretskii