From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18802 invoked by alias); 17 Mar 2002 01:28:56 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 18743 invoked from network); 17 Mar 2002 01:28:55 -0000 Received: from unknown (HELO localhost.redhat.com) (24.112.135.44) by sources.redhat.com with SMTP; 17 Mar 2002 01:28:55 -0000 Received: from cygnus.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 58A983EC1; Sat, 16 Mar 2002 20:28:53 -0500 (EST) Message-ID: <3C93F155.8030007@cygnus.com> Date: Sat, 16 Mar 2002 17:28:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:0.9.8) Gecko/20020210 X-Accept-Language: en-us MIME-Version: 1.0 To: Daniel Jacobowitz Cc: gdb-patches@sources.redhat.com Subject: Re: [patch] ``struct value'' cleanups References: <3C93EB92.2030003@cygnus.com> <20020316201740.A10905@nevyn.them.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2002-03/txt/msg00266.txt.bz2 > On Sat, Mar 16, 2002 at 08:04:18PM -0500, Andrew Cagney wrote: > >> @@ -166,9 +158,10 @@ >> union >> { >> long contents[1]; >> - double force_double_align; >> - LONGEST force_longlong_align; >> - char *literal_data; >> + DOUBLEST force_doublest_align; >> + LONGEST force_longest_align; >> + CORE_ADDR force_core_addr_align; >> + void *force_pointer_aligh; >> } >> aligner; >> /* Do not add any new members here -- contents above will trash them */ > > > (I suppose literal_data was not actually used anywhere either? It > seems different than the other members...) Rebuilt after the change and a grep didn't show anything. > Typo, force_pointer_aligh. I'm tempted to leave it in just to see if it also manages to remain there for 8 years :-) (thanks) Andrew