Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Jim Blandy <jimb@redhat.com>
To: Jim Ingham <jingham@apple.com>
Cc: gdb-patches@sources.redhat.com
Subject: Re: Trivial fix in value_sub
Date: Wed, 03 Apr 2002 14:52:00 -0000	[thread overview]
Message-ID: <np3cyce6o4.fsf@zwingli.cygnus.com> (raw)
In-Reply-To: <76AD507E-436C-11D6-890B-000393540DDC@apple.com>


(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?


  reply	other threads:[~2002-04-03 22:52 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-03-29 15:27 Jim Ingham
2002-04-03 14:52 ` Jim Blandy [this message]
2002-04-03 15:55   ` Michael Snyder
2002-04-03 16:11   ` Jim Ingham
2002-04-03 19:55     ` Jim Blandy
2002-04-03 20:11       ` Daniel Jacobowitz
2002-04-04 13:46         ` Jim Ingham
2002-04-04 14:24           ` Jim Blandy
2002-04-04 15:07             ` Jim Ingham
2002-04-04 15:15               ` Jim Blandy
2002-04-09 17:12                 ` Jim Ingham

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=np3cyce6o4.fsf@zwingli.cygnus.com \
    --to=jimb@redhat.com \
    --cc=gdb-patches@sources.redhat.com \
    --cc=jingham@apple.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox