From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10497 invoked by alias); 3 Apr 2002 22:52:49 -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 10466 invoked from network); 3 Apr 2002 22:52:44 -0000 Received: from unknown (HELO zwingli.cygnus.com) (208.245.165.35) by sources.redhat.com with SMTP; 3 Apr 2002 22:52:44 -0000 Received: by zwingli.cygnus.com (Postfix, from userid 442) id 80C885EA11; Wed, 3 Apr 2002 17:52:43 -0500 (EST) To: Jim Ingham Cc: gdb-patches@sources.redhat.com Subject: Re: Trivial fix in value_sub References: <76AD507E-436C-11D6-890B-000393540DDC@apple.com> From: Jim Blandy Date: Wed, 03 Apr 2002 14:52:00 -0000 In-Reply-To: <76AD507E-436C-11D6-890B-000393540DDC@apple.com> Message-ID: User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2002-04/txt/msg00079.txt.bz2 (Thanks for making value_add and value_sub consistent!) If I use an incomplete type in my program --- say, by making a definition like this: struct foo *x; where there is no definition for `struct foo' in scope --- does GDB set TYPE_LENGTH (TYPE_TARGET_TYPE (p)) to zero, where `p' is the type of x? See, that code in value_add (and now in value_sub) is supposed to handle void *; as an extension, GCC allows arithmetic on void * values, treating sizeof (void) as one. This makes sense for void * values, since they're often used as pointers to raw memory. However, for things like incomplete struct types, treating the size as one is completely bogus. That's surely not the behavior the user would expect; they may not even realize that the type is incomplete. If GDB really does set the length of an incomplete struct type to zero, then that code should really read something like: if (sz == 0 && TYPE_CODE (TYPE_TARGET_TYPE (type1)) == TYPE_CODE_VOID) sz = 1; Can you tell me more about the context in which you noticed this problem?