From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19456 invoked by alias); 13 Oct 2013 17:32:57 -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 19447 invoked by uid 89); 13 Oct 2013 17:32:56 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-4.4 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.3.2 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; Sun, 13 Oct 2013 17:32:56 +0000 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r9DHWtdE026463 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Sun, 13 Oct 2013 13:32:55 -0400 Received: from host2.jankratochvil.net (ovpn-116-94.ams2.redhat.com [10.36.116.94]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id r9DHWpJg009562 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NO); Sun, 13 Oct 2013 13:32:54 -0400 Date: Sun, 13 Oct 2013 17:32:00 -0000 From: Jan Kratochvil To: Ondrej Oprala Cc: gdb-patches@sourceware.org, Tom Tromey Subject: Re: [PATCH 16/18] fix up gdbtypes.h Message-ID: <20131013173251.GL12719@host2.jankratochvil.net> References: <1381339053-14519-1-git-send-email-ooprala@redhat.com> <1381339053-14519-17-git-send-email-ooprala@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1381339053-14519-17-git-send-email-ooprala@redhat.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-IsSubscribed: yes X-SW-Source: 2013-10/txt/msg00418.txt.bz2 On Wed, 09 Oct 2013 19:17:31 +0200, Ondrej Oprala wrote: > --- a/gdb/ChangeLog > +++ b/gdb/ChangeLog > @@ -17,6 +17,10 @@ > > 2013-10-09 Tom Tromey > > + * gdbtypes.h : Unbundle structures nested in union flds_bnds. ChangeLogs should technically describe which struct moved where etc. Such general description of the change is more appropriate as the optional heading of the entry, therefore: 2013-10-09 Tom Tromey Unbundle structures nested in union flds_bnds. * gdbtypes.h (union type_owner, union field_location, struct field) (struct range_bounds): Moved out from ... (struct main_type): ... here. [ more structs here ] > + > +2013-10-09 Tom Tromey > + > * common/vec.c (vec_p_preserve) : Add typedefs to struct vec_prefix *. > * common/vec.h (VEC_OP) : Add typedefs to VEC(T). > [...] OK with the patch itself; IIRC Tom said he did not modify anyhow the text while moving it so I hope it is so. Thanks, Jan