From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 89790 invoked by alias); 11 Dec 2017 23:43:52 -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 89772 invoked by uid 89); 11 Dec 2017 23:43:52 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00,SPF_HELO_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 spammy=H*Ad:D*t-online.de, HCc:D*t-online.de, Improved X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 11 Dec 2017 23:43:51 +0000 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 4AA4A883C2; Mon, 11 Dec 2017 23:43:50 +0000 (UTC) Received: from psique.yyz.redhat.com (unused-10-15-17-193.yyz.redhat.com [10.15.17.193]) by smtp.corp.redhat.com (Postfix) with ESMTP id 2C3676199D; Mon, 11 Dec 2017 23:43:49 +0000 (UTC) From: Sergio Durigan Junior To: GDB Patches Cc: Tom Tromey , Eli Zaretskii , Simon Marchi , Pedro Alves , =?UTF-8?q?Andr=C3=A9=20P=C3=B6nitz?= , Keith Seitz Subject: [PATCH v4 0/2] Implement pahole-like 'ptype /o' option (and do some code reorg) Date: Mon, 11 Dec 2017 23:43:00 -0000 Message-Id: <20171211234345.27351-1-sergiodj@redhat.com> In-Reply-To: <20171121160709.23248-1-sergiodj@redhat.com> References: <20171121160709.23248-1-sergiodj@redhat.com> X-IsSubscribed: yes X-SW-Source: 2017-12/txt/msg00257.txt.bz2 Changes from v3: - Simplified need_access_label_p. - Fixed a few typos. - Improved comments on c_print_type_struct_field_offset and c_print_type_union_field_offset. - Removed unused variable. - Added @smallexample to docs. Eli had approved the documentation bits for the previous patch, but since this one had an addition (the inclusion of an @smallexample showing the output of 'ptype /o'), I believe it'd be good if he could review it again. Thanks,