From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14403 invoked by alias); 2 May 2012 06:34:30 -0000 Received: (qmail 14213 invoked by uid 22791); 2 May 2012 06:34:27 -0000 X-SWARE-Spam-Status: No, hits=-6.3 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,RCVD_IN_DNSWL_HI,RCVD_IN_HOSTKARMA_W,SPF_HELO_PASS,TW_AV,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 02 May 2012 06:34:10 +0000 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q426Xm4H031443 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 2 May 2012 02:33:48 -0400 Received: from psique (ovpn-112-58.phx2.redhat.com [10.3.112.58]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q426XgtI028988; Wed, 2 May 2012 02:33:44 -0400 From: Sergio Durigan Junior To: Joel Brobecker Cc: gdb-patches@sourceware.org Subject: Re: [RFA/commit 1/2] Regenerate the features/i386 target description .c files References: <1335913461-1628-1-git-send-email-brobecker@adacore.com> <1335913461-1628-2-git-send-email-brobecker@adacore.com> X-URL: http://www.redhat.com Date: Wed, 02 May 2012 06:34:00 -0000 In-Reply-To: <1335913461-1628-2-git-send-email-brobecker@adacore.com> (Joel Brobecker's message of "Tue, 1 May 2012 16:04:20 -0700") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-IsSubscribed: yes 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 X-SW-Source: 2012-05/txt/msg00014.txt.bz2 On Tuesday, May 01 2012, Joel Brobecker wrote: > There's been a minor change in the code generator that affects > how a couple of local variables are being declared. This patch > regenerates the .c files in features/i386 to bring them up to > date. Hi Joel, Sorry, I only read your message after committing my patch to clean more bits in the features/ directory. http://sourceware.org/ml/gdb-patches/2012-05/msg00010.html Anyway, the only file my commit touched was `i386/i386-mmx-linux.c'. If it's not too much troube for you, I think you can remove this specific diff from the patch, and apply the rest safely. Thanks, > gdb/ChangeLog: > > * features/i386/amd64-avx-linux.c, features/i386/amd64-avx.c, > features/i386/amd64-linux.c, features/i386/amd64.c, > features/i386/i386-avx-linux.c, features/i386/i386-avx.c, > features/i386/i386-linux.c, features/i386/i386-mmx-linux.c, > features/i386/i386.c, features/i386/x32-avx-linux.c, > features/i386/x32-avx.c, features/i386/x32-linux.c, > features/i386/x32.c: Regenerate. > > Will commit in a day or two pending comments. > > --- > gdb/features/i386/amd64-avx-linux.c | 3 ++- > gdb/features/i386/amd64-avx.c | 3 ++- > gdb/features/i386/amd64-linux.c | 3 ++- > gdb/features/i386/amd64.c | 3 ++- > gdb/features/i386/i386-avx-linux.c | 3 ++- > gdb/features/i386/i386-avx.c | 3 ++- > gdb/features/i386/i386-linux.c | 3 ++- > gdb/features/i386/i386-mmx-linux.c | 2 +- > gdb/features/i386/i386.c | 3 ++- > gdb/features/i386/x32-avx-linux.c | 3 ++- > gdb/features/i386/x32-avx.c | 3 ++- > gdb/features/i386/x32-linux.c | 3 ++- > gdb/features/i386/x32.c | 3 ++- > 13 files changed, 25 insertions(+), 13 deletions(-) > > diff --git a/gdb/features/i386/amd64-avx-linux.c b/gdb/features/i386/amd64-avx-linux.c > index 73392d3..81e8ca7 100644 > --- a/gdb/features/i386/amd64-avx-linux.c > +++ b/gdb/features/i386/amd64-avx-linux.c > @@ -10,7 +10,8 @@ initialize_tdesc_amd64_avx_linux (void) > { > struct target_desc *result = allocate_target_description (); > struct tdesc_feature *feature; > - struct tdesc_type *field_type, *type; > + struct tdesc_type *field_type; > + struct tdesc_type *type; > > set_tdesc_architecture (result, bfd_scan_arch ("i386:x86-64")); > > diff --git a/gdb/features/i386/amd64-avx.c b/gdb/features/i386/amd64-avx.c > index 05c60ff..d69d427 100644 > --- a/gdb/features/i386/amd64-avx.c > +++ b/gdb/features/i386/amd64-avx.c > @@ -10,7 +10,8 @@ initialize_tdesc_amd64_avx (void) > { > struct target_desc *result = allocate_target_description (); > struct tdesc_feature *feature; > - struct tdesc_type *field_type, *type; > + struct tdesc_type *field_type; > + struct tdesc_type *type; > > set_tdesc_architecture (result, bfd_scan_arch ("i386:x86-64")); > > diff --git a/gdb/features/i386/amd64-linux.c b/gdb/features/i386/amd64-linux.c > index 71efcbe..db97118 100644 > --- a/gdb/features/i386/amd64-linux.c > +++ b/gdb/features/i386/amd64-linux.c > @@ -10,7 +10,8 @@ initialize_tdesc_amd64_linux (void) > { > struct target_desc *result = allocate_target_description (); > struct tdesc_feature *feature; > - struct tdesc_type *field_type, *type; > + struct tdesc_type *field_type; > + struct tdesc_type *type; > > set_tdesc_architecture (result, bfd_scan_arch ("i386:x86-64")); > > diff --git a/gdb/features/i386/amd64.c b/gdb/features/i386/amd64.c > index 154e8df..951b36d 100644 > --- a/gdb/features/i386/amd64.c > +++ b/gdb/features/i386/amd64.c > @@ -10,7 +10,8 @@ initialize_tdesc_amd64 (void) > { > struct target_desc *result = allocate_target_description (); > struct tdesc_feature *feature; > - struct tdesc_type *field_type, *type; > + struct tdesc_type *field_type; > + struct tdesc_type *type; > > set_tdesc_architecture (result, bfd_scan_arch ("i386:x86-64")); > > diff --git a/gdb/features/i386/i386-avx-linux.c b/gdb/features/i386/i386-avx-linux.c > index 1aa939b..038073e 100644 > --- a/gdb/features/i386/i386-avx-linux.c > +++ b/gdb/features/i386/i386-avx-linux.c > @@ -10,7 +10,8 @@ initialize_tdesc_i386_avx_linux (void) > { > struct target_desc *result = allocate_target_description (); > struct tdesc_feature *feature; > - struct tdesc_type *field_type, *type; > + struct tdesc_type *field_type; > + struct tdesc_type *type; > > set_tdesc_architecture (result, bfd_scan_arch ("i386")); > > diff --git a/gdb/features/i386/i386-avx.c b/gdb/features/i386/i386-avx.c > index 1e74ed5..cdfebf8 100644 > --- a/gdb/features/i386/i386-avx.c > +++ b/gdb/features/i386/i386-avx.c > @@ -10,7 +10,8 @@ initialize_tdesc_i386_avx (void) > { > struct target_desc *result = allocate_target_description (); > struct tdesc_feature *feature; > - struct tdesc_type *field_type, *type; > + struct tdesc_type *field_type; > + struct tdesc_type *type; > > set_tdesc_architecture (result, bfd_scan_arch ("i386")); > > diff --git a/gdb/features/i386/i386-linux.c b/gdb/features/i386/i386-linux.c > index cc1fb99..cdc41a8 100644 > --- a/gdb/features/i386/i386-linux.c > +++ b/gdb/features/i386/i386-linux.c > @@ -10,7 +10,8 @@ initialize_tdesc_i386_linux (void) > { > struct target_desc *result = allocate_target_description (); > struct tdesc_feature *feature; > - struct tdesc_type *field_type, *type; > + struct tdesc_type *field_type; > + struct tdesc_type *type; > > set_tdesc_architecture (result, bfd_scan_arch ("i386")); > > diff --git a/gdb/features/i386/i386-mmx-linux.c b/gdb/features/i386/i386-mmx-linux.c > index 364ade4..872826a 100644 > --- a/gdb/features/i386/i386-mmx-linux.c > +++ b/gdb/features/i386/i386-mmx-linux.c > @@ -10,7 +10,7 @@ initialize_tdesc_i386_mmx_linux (void) > { > struct target_desc *result = allocate_target_description (); > struct tdesc_feature *feature; > - struct tdesc_type *field_type, *type; > + struct tdesc_type *field_type; > > set_tdesc_architecture (result, bfd_scan_arch ("i386")); > > diff --git a/gdb/features/i386/i386.c b/gdb/features/i386/i386.c > index 7f7beb3..b1de96f 100644 > --- a/gdb/features/i386/i386.c > +++ b/gdb/features/i386/i386.c > @@ -10,7 +10,8 @@ initialize_tdesc_i386 (void) > { > struct target_desc *result = allocate_target_description (); > struct tdesc_feature *feature; > - struct tdesc_type *field_type, *type; > + struct tdesc_type *field_type; > + struct tdesc_type *type; > > set_tdesc_architecture (result, bfd_scan_arch ("i386")); > > diff --git a/gdb/features/i386/x32-avx-linux.c b/gdb/features/i386/x32-avx-linux.c > index d2e5ce9..b01013a 100644 > --- a/gdb/features/i386/x32-avx-linux.c > +++ b/gdb/features/i386/x32-avx-linux.c > @@ -10,7 +10,8 @@ initialize_tdesc_x32_avx_linux (void) > { > struct target_desc *result = allocate_target_description (); > struct tdesc_feature *feature; > - struct tdesc_type *field_type, *type; > + struct tdesc_type *field_type; > + struct tdesc_type *type; > > set_tdesc_architecture (result, bfd_scan_arch ("i386:x64-32")); > > diff --git a/gdb/features/i386/x32-avx.c b/gdb/features/i386/x32-avx.c > index 47d7305..af235cd 100644 > --- a/gdb/features/i386/x32-avx.c > +++ b/gdb/features/i386/x32-avx.c > @@ -10,7 +10,8 @@ initialize_tdesc_x32_avx (void) > { > struct target_desc *result = allocate_target_description (); > struct tdesc_feature *feature; > - struct tdesc_type *field_type, *type; > + struct tdesc_type *field_type; > + struct tdesc_type *type; > > set_tdesc_architecture (result, bfd_scan_arch ("i386:x64-32")); > > diff --git a/gdb/features/i386/x32-linux.c b/gdb/features/i386/x32-linux.c > index b42287d..d34a2a9 100644 > --- a/gdb/features/i386/x32-linux.c > +++ b/gdb/features/i386/x32-linux.c > @@ -10,7 +10,8 @@ initialize_tdesc_x32_linux (void) > { > struct target_desc *result = allocate_target_description (); > struct tdesc_feature *feature; > - struct tdesc_type *field_type, *type; > + struct tdesc_type *field_type; > + struct tdesc_type *type; > > set_tdesc_architecture (result, bfd_scan_arch ("i386:x64-32")); > > diff --git a/gdb/features/i386/x32.c b/gdb/features/i386/x32.c > index 6342ddd..755ec69 100644 > --- a/gdb/features/i386/x32.c > +++ b/gdb/features/i386/x32.c > @@ -10,7 +10,8 @@ initialize_tdesc_x32 (void) > { > struct target_desc *result = allocate_target_description (); > struct tdesc_feature *feature; > - struct tdesc_type *field_type, *type; > + struct tdesc_type *field_type; > + struct tdesc_type *type; > > set_tdesc_architecture (result, bfd_scan_arch ("i386:x64-32")); > > -- > 1.7.1 -- Sergio