Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Daniel Jacobowitz <drow@false.org>
To: Keith Seitz <keiths@redhat.com>
Cc: gdb-patches@sourceware.org
Subject: Re: [RFA] "Sort" C++ fieldlists
Date: Fri, 04 Dec 2009 13:51:00 -0000	[thread overview]
Message-ID: <20091204135135.GA4909@caradoc.them.org> (raw)
In-Reply-To: <4B187211.8070004@redhat.com>

On Thu, Dec 03, 2009 at 06:21:05PM -0800, Keith Seitz wrote:
> Hi,
> 
> My method overload resolution patch was committed with the following
> comment (from value_struct_elt_for_reference):
> 
>   /* This assumes, of course, that all artificial methods appear
>      BEFORE any concrete methods.  */
> 
> Turns out that isn't a really great assumption. In particular, it
> fails on GCC 3.4.6. So I'm requesting that the attached patch be
> approved. The patch inserts artificial methods into the type's
> fieldlist starting at index 0 and concrete methods starting at the
> end index.
> 
> This shows no regressions (and no advantages) using GCC on linux.
> However, if you run cpexprs.exp, this patch will fix 17 failures with
> GCC 3.4.6. At the worst, consider this a defensive patch against
> breaking the value_struct_elt_for_reference assumption.

I guess this is OK... it seems nicer not to impose the restriction.
Is it this easy?

              int ii;
              j = -1;
              for (ii = 0; ii < TYPE_FN_FIELDLIST_LENGTH (t, i);
                   ++ii)
                {
		  /* Skip artificial methods.  This is necessary if, for example,
		     the user wants to "print subclass::subclass" with only
		     one user-defined constructor.  There is no ambiguity in this
		     case.  */
                  if (TYPE_FN_FIELD_ARTIFICIAL (f, ii))
                    continue;

		  /* Desired method is ambiguous if more than one method is
		     defined.  */
		  if (j != -1)
		    error (_("non-unique member `%s' requires type instantiation"), name);

		  j = ii;
                }

-- 
Daniel Jacobowitz
CodeSourcery


  reply	other threads:[~2009-12-04 13:51 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-12-04  2:21 Keith Seitz
2009-12-04 13:51 ` Daniel Jacobowitz [this message]
2009-12-04 17:32   ` Keith Seitz
2009-12-04 20:54     ` Daniel Jacobowitz

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=20091204135135.GA4909@caradoc.them.org \
    --to=drow@false.org \
    --cc=gdb-patches@sourceware.org \
    --cc=keiths@redhat.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